jquery 控制 insertAfter(content)

insertAfter(content)

将匹配元素集合插入至匹配元素集合‘content’之后。

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
                    "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
  
  <script>
  $(document).ready(function(){
    $("p").insertAfter("#foo"); // check after() examples
  });
  </script>
  <style>#foo { background:yellow; }</style>
</head>
<body>
  <p> is what I said... </p><div id="foo">FOO!</div>
</body>
</html>

 

 $("p").insertAfter("#foo"); // check after() examples

将匹配p元素集合插入至属性值为‘foo’的匹配元素之后

你可能感兴趣的:(html,jquery)