自学篇之----jquery 添加和删除内容

<html>

<head>

<script type="text/javascript" src="/jquery/jquery.js"></script>

<script type="text/javascript">

$(document).ready(function(){

  $("#del").click(function(){

    $("p:first").remove();

  });

  $("#add").click(function(){

    $("body").prepend("<p>this is add</p>");

  });

});

</script>

</head>

<body>

<p>这是一个段落。</p>

<p>这是另一个段落。</p>

<button id="del">dele</button>

<button id="add">add</button>

</body>

</html>


如果有其他的代码或者有改善的,希望能提出来,这纯粹是自己学的,所以还有很多不懂的。。。嘻嘻,只是简单的部分。























你可能感兴趣的:(自学篇之----jquery 添加和删除内容)