web_東
2018-03-11 00:02
<html>
<head>
<script type="text/javascript" src="/jquery/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("button").click(function(){
$("p").append(function(n){
return "<b>This p element has index " + n + "</b>";
});
});
});
</script>
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<button>在每个 p 元素的结尾添加内容</button>
</body>
</html>
$("p")这个选择器选中了多个p元素,function(n)中的n就是这些p元素的序号,0、1、2……
jQuery基础 (一)—样式篇
217509 学习 · 1218 问题
相似问题