Jquery内容改变时触发事件

Posted 橘子king

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Jquery内容改变时触发事件相关的知识,希望对你有一定的参考价值。

<div class="t_input">
        <label>¥</label>
        <input type="text" name="" class="t_num" id="t_use">
        <span class="place_span">可提现金额:¥9,995.23</span>
</div>

 input里面的内容改变时span标签里的内容消失,input里面的内容为空时,当失去焦点后span标签显示

 

 

 

<script type="text/javascript">
        $("#t_use").bind("input propertychange",function(){
            $(this).next(\'span\').css("display",\'none\');
        })
        $("#t_use").blur(function(){
            if($(this).val()==""){
                $(this).next(\'span\').css("display",\'block\')
            }
        })
</script>

 

以上是关于Jquery内容改变时触发事件的主要内容,如果未能解决你的问题,请参考以下文章

jquery radio改变时没有触发on的change事件,是为啥

如何监听div内容的改变?

JS 当html改变时触发事件

jQuery表单事件

input 内容改变的触发事件

input 内容改变的触发事件