jquery绑定点击事件的三种写法

2019-02-17 01:49:03来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

一、用jquery动态绑定点击事件的写法

部分代码:

 

<script type="text/javascript">
$(document).ready(function(){
    $("#text").bind("click",function(){
        alert("我的id为text,你点击时触发");
    });
    
    $("#text1").on("click",function(){
        alert("hellworl");
    });
    
    $("#text2").click(function(){
        alert($("#text2").val());
        
    });
});
    
    
</script>
<body>
    
    <input id="text" type="button" value="点击"/> 
    
    <input id="text1" type="button" value="点击"/> 
    
    <input id="text2" type="text" value="love"/> 
</body>

 

 

 

  


原文链接:https://www.cnblogs.com/whalesea/p/10365965.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:node配置微信小程序解密消息以及推送消息

下一篇:layui topbar图标(即返回顶部)未显示的解决方法