我在使用jquery编辑模板中的文本时遇到麻烦,我似乎无法选择它。这是我所拥有的:

<div id="container">
<a class="teamLink smallButton" href="#">Click Here</a>
</div>

<script>
$('.smallButton a').text('new text');
</script>


我想编辑文本“单击此处”

最佳答案

您的选择器将查找a元素,这些元素是具有.smallButton类的元素的后代。

尝试这个:

$(document).ready(function() {
    $('a.smallButton').text('new text');
});


工作提琴:http://jsfiddle.net/9ntH6/

10-08 15:27