jquery的ready函数

发布于 2024-12-15 18:40:11 字数 405 浏览 0 评论 0原文

我正在使用一个非常简单的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

虫児飞 2024-12-22 18:40:11

您尚未在页面中包含 jQuery 库,因此 $ 为 <代码>未定义。

You haven't included the jQuery library in the page, so $ is undefined.

盗梦空间 2024-12-22 18:40:11

添加jquery库

<script type="text/javascript" src="http://ajax.microsoft.com/ajax/jquery/jquery-1.4.2.min.js"></script>

Add jquery library

<script type="text/javascript" src="http://ajax.microsoft.com/ajax/jquery/jquery-1.4.2.min.js"></script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文