当我使用 jQuery 添加 div 时,我无法获取当前索引大小
HTML:
<div>
<p>1</p>
</div>
<button>Add</button>
jQuery:
$("button").live("click",function() {
var index = $("div").index()+1;
$("div").append('<p>'+index+'</p>');
});
游乐场:http: //jsfiddle.net/uZwWg/
我必须使用该each
功能还是有其他解决方案?