jquery html改变div当中的内容

来源:互联网 发布:阿里云待遇 编辑:程序博客网 时间:2024/05/01 22:55
<html><head><script type="text/javascript" src="/jquery/jquery.js"></script><script type="text/javascript">$(document).ready(function(){  $("button").click(function(){  $("p").html("W3School");  });});</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>

原创粉丝点击