html
<p>This is a <b>bold</b> paragraph.</p>
<button>Add</button>
jQuery
$("button").click(function(){
$("p").text(function(i,origText){
return "Old text: " + origText + " New text: Hello world! (index: " + i + ")";
});
});
我想知道origText没有在函数外部调用,但它正在返回值。如何?