Jquery - 按下打开按钮(来自输入=“文件”)后启动功能
按下打开*按钮后如何启动功能?
html
<form id="xxx">
<input id="yyy" type="file" />
</form>
js
$(function(){
$('body').append('jq works <br />');
$("#xxx").submit(function ()
{
$('body').append('start function<br />');
});
});
jsfiddle http://jsfiddle.net/vGBaK/
编辑:
我的意思是这个按钮 ->
how can I start a function after the open* button is pressed?
html
<form id="xxx">
<input id="yyy" type="file" />
</form>
js
$(function(){
$('body').append('jq works <br />');
$("#xxx").submit(function ()
{
$('body').append('start function<br />');
});
});
jsfiddle
http://jsfiddle.net/vGBaK/
edit:
I mean this button ->
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用更改事件,如果选择相同的文件,它不会触发,但如果您还清除了单击事件,它应该可以工作。
看到这个JSFiddle
You can use the change event, it wont fire if the same file is selected but if you also clear on the click event it should work.
see this JSFiddle
这里我假设 open* 按钮表示文件输入框的浏览按钮,
Here I assume open* button means browse button of your file input box,