我无法将jquery文件链接到我的html

时间:2014-10-08 19:06:56

标签: jquery html

我无法在此代码中找到错误。 它没有正确链接到JQuery文件。请帮忙。 这是我的html文件:

 <html>
<head>
<link rel='stylesheet' type='text/css' href='index.css'>
<script type="text/javascript" src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
<!--<script type="text/javascript" src="F:\Rushikesh\Project\Final\index.js"></script>-->
</head>
<header>Web Development Tutorial</header>
    <body>.
        <div class="formDiv">
            <button  id="btn1">Submit</button><br />
            <p id="panelCnt">You have clicked submit button <span id="Cnt">0</span> times.</p>
        </div>                  
    </body>
</html>

这是index.js文件:

$(document).ready(function() {
        $('#btn1').click(alert("you clicked"));
});

1 个答案:

答案 0 :(得分:0)

您可能想要更改代码。在HTML文件中,您已包含“jquery-ui.js”。请改用此链接 - code.jquery.com/jquery-1.11.1.min.js - divyenduz

这将使您的代码成为这样(在第4行代码中更改)

<html>
<head>
<link rel='stylesheet' type='text/css' href='index.css'>
<script type="code.jquery.com/jquery-1.11.1.min.js"></script>
</head>
<header>Web Development Tutorial</header>
    <body>.
        <div class="formDiv">
            <button  id="btn1">Submit</button><br />
            <p id="panelCnt">You have clicked submit button <span id="Cnt">0</span> times.</p>
        </div>                  
    </body>
</html>

index.js文件会改变,发送匿名函数点击: -

$(document).ready(function() {
    $('#btn1').click(function(){
        alert("you clicked");
    });
});

同样,欢迎来到StackOverflow社区。请参阅https://stackoverflow.com/help,了解如何回答正确的问题,以避免投票。

谢谢

修改: - 检查一下 - http://jsfiddle.net/了解工作代码