为了账号安全,请及时绑定邮箱和手机立即绑定

请问这个语句在该例子中的作用:.$(this).attr("disabled","true");

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title>unbind()移除绑定的事件</title>
        <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script>
        <link href="style.css" rel="stylesheet" type="text/css" />
    </head>
    
    <body>
        <h3>unbind()移除绑定的事件</h3>
        <input id="btntest" type="button" value="移除事件" />
        <div>土豪,咱们交个朋友吧</div>
        
        <script type="text/javascript">
            $(function () { 
                $("div").bind("click",function()
                {
                    $(this).removeClass("backcolor").addClass("color");
                }).bind("dblclick",function()
                {
                    $(this).removeClass("color").addClass("backcolor");
                       
                })
            $("#btntest").bind("click",function(){
                $("div").unbind("dblclick");
                $(this).attr("disabled","true");//该语句不加对程序的实现没有影响,请问该语句放在这里是什么作用呢?
                
            })
            
                
            });
        </script>
    </body>
</html>

CSS代码:

div
{
    width: 160px;
    border: solid 1px #ccc;
    padding: 8px;
    text-align: center;
}
.color
{
    color: Orange;
}
.backcolor
{
    background-color: Orange;
    color: White;
}


正在回答

2 回答

当你点击了移除绑定事件按钮,此按钮就变为不可用了.attr()用来设置属性哒

0 回复 有任何疑惑可以回复我~

点击了之后用attr()修改目标属性值

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
jQuery基础课程
  • 参与学习       154768    人
  • 解答问题       7184    个

加入课程学习,有效提高前端开发速度

进入课程

请问这个语句在该例子中的作用:.$(this).attr("disabled","true");

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信