Huploadify+ThinkPHP文件上传中按钮字体颜色问题

在脱离框架用Huploadify做上传文件的时候一切正常

可是当我把代码搬到ThinkPHP5里面使用时,按钮里面的字体颜色有时候变成蓝色

既然是蓝色,肯定跟a标签有关

在jquery.Huploadify.js里面找到下面一段代码

inputStr += '<a id="file_upload_'+instanceNumber+'-button" href="javascript:void(0)" class="uploadify-button">';

改成

inputStr += '<a style="color:white;" id="file_upload_'+instanceNumber+'-button" href="javascript:void(0)" class="uploadify-button">';
这样就没什么问题了,不管在什么情况下,字体颜色都是白色。当然,你也可以改成别的颜色~~~

猜你喜欢

转载自blog.csdn.net/weixin_41728561/article/details/80264870