jquery的ready函数
我正在使用一个非常简单的 jquery 更改段落文本,但它不起作用。请帮忙。
抱歉没有先学习 JQUERY,我直接跳到代码,不知道它也需要一个单独的 jquery 文件。
<script type="text/javascript">
$(document).ready(function(){
$("p").text("The DOM is now loaded and can be manipulated.");
});
</script>
</head>
<body>
<p>This is a paragraph.</p>
</body>
</html>
I am changing the paragraph text using a very simple jquery , but it isn't working. Please help.
SORRY FOR NOT LEARING JQUERY FIRST, I JUMPED DIRECTLY TO THE CODE, NOT KNOWING THAT IT NEEDS A SEPARATE jquery file too.
<script type="text/javascript">
$(document).ready(function(){
$("p").text("The DOM is now loaded and can be manipulated.");
});
</script>
</head>
<body>
<p>This is a paragraph.</p>
</body>
</html>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您尚未在页面中包含 jQuery 库,因此
$
为 <代码>未定义。You haven't included the jQuery library in the page, so
$
isundefined
.添加jquery库
Add jquery library