<p class="myString">something to remove xxx here within a tag</p>

$('p.myString').text(function(_, txt) {
    return txt.replace('xxx', '');
});


上面的代码有效,但是第一个参数是什么? _

最佳答案

正如documentation所说,第一个参数是您当前正在处理的元素的索引。

10-06 08:11