3

我正在尝试使用 jQuery,但由于某种原因,当我单击按钮时什么都没有发生。我已经尝试以多种方式操作代码,但仍然没有任何反应

我正在使用 Firefox,并且 javascript 工作正常。

这是我的代码:

<!DOCTYPE html>
<html>
<head>
    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
    <style>
        body {
            background-color:royalblue; 
            margin:0px;
        }

        #div_header {
            background-color:black;
            height:200px;   
        }
    </style>

    <script type="text/javascript">
        $(document).ready(function() {
            $("button").click(function() {
                $("#div_header").hide();
            });
        });
    </script>
</head>
<body>
    <div id="div_header">
        <button type="button">Click me!</button>
    </div>
</body>
</html>
4

1 回答 1

5

脚本源值不正确。将其更改为

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
于 2013-02-01T17:07:34.660 回答