DOM变化后事件绑定失效

Posted xiaobingch

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了DOM变化后事件绑定失效相关的知识,希望对你有一定的参考价值。

第一个file在change时,是能够触发事件的,而第二插入的file则没有change事件。对于这个问题,有如下两种解决方法:

第一种是将绑定change事件封装成一个函数,在点击button按钮插入file控件之后,调用这个函数。如下:

<script type="text/javascript">     
    $(function(){  
        function fileChange(){  
            $(‘input[type ="file"]‘).change(function(){  
                console.log($(this).val())  
                if($(this).val() == ""){  
                    alert("你好")  
                }  
            })  
        }  
        fileChange();  
        $(‘input[type ="button"]‘).click(function(){  
            $("#content").append(‘<input type="file"/>‘);  
            fileChange();  
        })  
    })  
</script>  

另一种方式,是在DOM加载之后和DOM内容发生改变时,绑定file控件的change事件,如下:

<script type="text/javascript">  
      
    window.onload,window.onchange = function(){  
        $(‘input[type ="file"]‘).change(function(){  
            console.log($(this).val() )  
            if($(this).val() == ""){  
                alert("你好")  
            }  
        })  
    }  
      
    $(‘input[type ="button"]‘).click(function(){  
        $("#content").append(‘<input type="file"/>‘)  
    })  
      
</script>  

 

以上是关于DOM变化后事件绑定失效的主要内容,如果未能解决你的问题,请参考以下文章

关于动态生成dom绑定事件失效的原因

通过js添加的DOM节点的click事件绑定不上的解决方案以及IOS下click事件委派失效的解决方案

mui点击事件失效

Vuejs 之 数据绑定

02-Vue入门之数据绑定

随笔一个dom节点绑定事件