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

JQuery中怎么不能用click事件,下面是我的代码

JQuery中怎么不能用click事件,下面是我的代码

阿晨1998 2019-04-03 02:01:36
<html><head><title>测试JQuery</title><meta charset = "utf-8"/><style>.class_1{background-color: red;}</style><script type = "text/javascript" src = "../JQuery/jquery.js"></script><script language = "javascript">$(document).ready(function(){window.alert("Hello JQuery!");});//这里触发事件后不能输出您好$('#test').click(function(){window.alert('您好');});</script></head><body><input class = "class_1" type = "button" id="test" value = "点击测试"/></body></html>
查看完整描述

3 回答

?
FFIVE

TA贡献1797条经验 获得超6个赞

你的是能用 click事件

$(document).ready(function(){
window.alert("Hello JQuery!");

//把代码放在 ready 方法里面 才起作用 因为要等文档加载完成 才能找到 test这个元素
//这里触发事件后不能输出您好
$('#test').click(function(){
window.alert('您好');
});

});

查看完整回答
反对 回复 2019-04-04
?
收到一只叮咚

TA贡献1821条经验 获得超4个赞


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

<html>

    <head>

        <title>测试JQuery</title>

        <meta charset = "utf-8"/>

        <style>

            .class_1{

                background-color: red;

            }

        </style>

        <script type = "text/javascript" src = "../JQuery/jquery.js"></script>

         

    </head>

    <body>

        <input class = "class_1" type = "button" id="test" value = "点击测试"/>

        <script language = "javascript">

            $(document).ready(function(){

                alert("Hello JQuery!");

            });

            //这里触发事件后不能输出您好

            $('#test').click(function(){

                alert('您好');

            });

        </script>

    </body>

</html>



 

 


查看完整回答
反对 回复 2019-04-04
  • 3 回答
  • 0 关注
  • 801 浏览

添加回答

举报

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