Jquery - 按下打开按钮(来自输入=“文件”)后启动功能

发布于 2024-09-30 18:11:12 字数 594 浏览 2 评论 0原文

按下打开*按钮后如何启动功能?

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 -> alt text

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

养猫人 2024-10-07 18:11:12

您可以使用更改事件,如果选择相同的文件,它不会触发,但如果您还清除了单击事件,它应该可以工作。

看到这个JSFiddle

$(function(){

    $('body').append('jq works <br />');

    $("#xxx").submit(function ()
    {

       $('body').append('go >> <br />');

    });

    $("#yyy").change(function(){
        alert("changed");
    }).click(function(){
        $(this).val("")
    });

});

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

$(function(){

    $('body').append('jq works <br />');

    $("#xxx").submit(function ()
    {

       $('body').append('go >> <br />');

    });

    $("#yyy").change(function(){
        alert("changed");
    }).click(function(){
        $(this).val("")
    });

});
梦幻之岛 2024-10-07 18:11:12

这里我假设 open* 按钮表示文件输入框的浏览按钮,

 $("#yyy").click(function(){
        //alert("button clicked")
        // write your code
 })

Here I assume open* button means browse button of your file input box,

 $("#yyy").click(function(){
        //alert("button clicked")
        // write your code
 })
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文