0

我是 JQuery 的新手并尝试使用此代码,但由于某种原因,我没有看到弹出警报按钮..

<!doctype html>
<html>
    <head>
        <meta charset="utf-8" />
        <title>Demo</title>
    </head>

    <body>
        <a href="http://jquery.com/">jQuery</a>
        <script src="C:/jquery/jquery.js"></script>
        <script>
            $( document ).ready(function() {
                $( "a" ).click(function( event ) {
                    alert( "The link will no longer take you to jquery.com" );
                    event.preventDefault();
                });
            });
        </script>
        <style>
            a.test {
                font-weight: bold;
            }
        </style>
    </body>
</html>
4

2 回答 2

2

我认为这不是从本地主机包含 jquery 脚本的正确方法,您可以出于测试目的(甚至生产)以这种方式包含它:

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>

请记住放入您的 html 标头。

如果您仍想从本地驱动器中包含它,请使用以下路径:

file:///C:/jquery/jquery.js
于 2013-11-11T22:47:36.610 回答
0

代码没问题,这应该可以。

尝试更换

<script src="C:/jquery/jquery.js"></script>

经过

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> 
于 2013-11-11T22:47:59.953 回答