<label for="user_name"> <abbr title="required">*</abbr> Name </label>
我想使用jquery将标签标题更改为Title。所以我做
$('label[for=user_name]').html('Title')
并且它替换所有内部html(带abbr标签)
所以,什么最简单的方法,只替换名称?
$('label[for="user_name"]').contents().last()[0].textContent='Title';
演示:http://jsfiddle.net/yPAST/1/