<script src="js/jquery.min.js"></script>
时间: 2024-05-24 10:10:09 浏览: 125
This is a script tag that includes the jQuery library. It is used to add jQuery functionality to a web page. The "src" attribute specifies the location of the jQuery file, which is usually stored in a "js" folder within the website's directory. The file name is "jquery.min.js," which is a minified version of the jQuery library.
相关问题
<script type="text/javascript" src="js/simpleCart.min.js"></script>
同样,这也不是一个问题,这是一个 HTML 标签,用于引入 SimpleCart.js 框架的 JavaScript 文件。通过这个标签,网页可以使用 SimpleCart.js 提供的一些购物车功能,如添加商品、结算等。需要注意的是,这个标签必须在引入 jQuery 和 SimpleCart CSS 文件之后引入。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <script src="/jquery-3.6.3.min.js"> $("#11").click(function (){ alert("haha"); }) </script> <button id="11">haha</button> </body> </html>该代码为什么不弹出警示框
该代码没有在文档加载完成后执行JavaScript代码,因此jQuery代码无法生效。在引入jQuery库的`<script>`标签中,应该只引入jQuery库文件,而不应该将JavaScript代码写在里面。
正确的写法是,将jQuery代码放在`<script>`标签外面,并将代码放在文档就绪函数中,如下所示:
```
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<button id="11">haha</button>
<script src="/jquery-3.6.3.min.js"></script>
<script>
$(document).ready(function(){
$("#11").click(function (){
alert("haha");
});
});
</script>
</body>
</html>
```
这样,在网页加载完成后,jQuery代码才会生效,点击按钮时才会弹出警示框。
阅读全文