随笔 - 3065  文章 - 0 评论 - 0 阅读 - 734万
< 2025年1月 >
29 30 31 1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31 1
2 3 4 5 6 7 8

1.转自:http://www.w3school.com.cn/jquery/manipulation_html.asp

设置所有 p 元素的内容:

 

复制代码
 1 <html>
 2 <head>
 3 <script type="text/javascript" src="/jquery/jquery.js"></script>
 4 <script type="text/javascript">
 5 $(document).ready(function(){
 6   $(".btn1").click(function(){
 7     $("p").html("Hello <b>world!</b>");
 8   });
 9 });
10 </script>
11 </head>
12 <body>
13 <p>This is a paragraph.</p>
14 <p>This is another paragraph.</p>
15 <button class="btn1">改变 p 元素的内容</button>
16 </body>
17 </html>
复制代码

 

posted on   Sharpest  阅读(363)  评论(0编辑  收藏  举报
(评论功能已被禁用)
点击右上角即可分享
微信分享提示