jquery append追加,preppend预置

来源:互联网 发布:淘宝金酷娃警车 编辑:程序博客网 时间:2024/04/29 18:06
<html><head><script type="text/javascript" src="/jquery/jquery.js"></script><script type="text/javascript">$(document).ready(function(){  $("button").click(function(){  $("p").append(" <b>W3School</b>.");  });});</script></head><body><h2>This is a heading</h2><p>This is a paragraph.</p><p>This is another paragraph.</p><button type="button">请点击这里</button></body></html>

原创粉丝点击