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

为什么不能用如下方式触发click事件

为什么不能用如下方式触发click事件

笨妮儿 2016-01-28 18:29:26
<!DOCTYPE html><html>    <head>        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />        <title>jQuery动画特效</title>        <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script>    </head>    <style >        #test{            width:80px;            height:80px;            background-color:red;            margin-bottom:20px;            margin-left:100px;            position:relative;            }    </style>    <script>        $(function(){            $("#left").click=function(){                $("#test").animate({                    left:"-=50px"                },3000);            }            $("#right").click=function(){                $("#test").animate({                    left:"+=50px"                },3000);            }        });            </script>    <body>        <div id="test"></div>        <input id="left" type="button" value="左移"/>        <input id="right" type="button" value="右移"/>    </body></html>
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 1284 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信