jQuery移动点击事件无效

前端之家收集整理的这篇文章主要介绍了jQuery移动点击事件无效前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
移动网页中的点击功能有问题.这是我的 HTML代码
<div data-role=content>
    <input type="text" id="text">
    <div id="ss"></div>
</div>
<script type="javascript">
    $(document).ready(function() {
        $("#text").keyup(function(){
            $('#ss').append('<div style="background:yellow;" >Text<br/><a class="te"> alert </a></div>');
        });

        $(".te").click(function(){
             alert("It is working");
        });
     });
</script>

请帮我解决这个问题.

解决方法

您的元素是动态添加的,使用事件委派.将您的点击事件更改为:
$(document).on('click','.te',function() {
    //do stuff
});
原文链接:https://www.f2er.com/jquery/175834.html

猜你在找的jQuery相关文章