使用eazyUI 上传文件的input type=“file” 点击没有效果 选择资源的窗口没有出现

2020-12-08 13:58发布

问题:

如题后台系统页面是jsp 使用了eazyui 框架

<input type = "file" id ="uoload"/>

点击选择资源窗口未出现。

回答1:

换家公司。问题解决。       

      --忘了之前怎么解决的了  -.-



回答2:

加上name试试:<input type = "file" name="file" id ="uoload"/>



回答3:

你换个写法试试:

 $(document).ready(function () {
        $('#uoload').filebox({
            buttonText: '选择文件',
            buttonAlign: 'left'
        })
  });

<input id="uoload" type="text" style="width:300px">


回答4:

事件未触发吧,你可以在你的事件方法里加一个alert,看看能不能弹出来



标签: eazyUI html