什么是 $ 在 HTML 中
在 HTML 中,是一个非常常见的符号,它通常用于代表 jQuery 库中的全局变量。jQuery 是一个流行的 JavaScript 库,它简化了 HTML 元素的选取、事件处理、动画效果等操作。在 jQuery 中, 符号是 jQuery 的别名,用来替代 jQuery 对象。
示例代码1
<!DOCTYPE html>
<html>
<head>
<title>jQuery 示例</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
$(document).ready(function(){
alert("how2html.com");
});
</script>
</head>
<body>
</body>
</html>
在上面的示例代码中,我们通过 $
符号选择了 document
对象,并在文档加载完成后弹出一个包含 “how2html.com” 的提示框。
示例代码2
<!DOCTYPE html>
<html>
<head>
<title>jQuery 示例</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
("button").click(function(){("p").html("how2html.com");
});
</script>
</head>
<body>
<button>点击我</button>
<p></p>
</body>
</html>
Output:
在这个示例代码中,当点击按钮时,我们通过 $
符号选择了 button
元素,并将 p
元素的内容设置为 “how2html.com”。
以后在编写 HTML 页面中使用 jQuery 时,$ 符号会成为你的好朋友,帮助你更加方便地操作 HTML 元素。