我想在单击按钮时显示隐藏的跨度。我的 html 看起来像:
<ul>
<li>
<span class="sfFormlabel" style="display:none" >show</span>
<div id="div1">
<input type="button" value="show" class="show">
</div>
</li>
<li>
<span class="sfFormlabel" style="display:none" >show1</span>
<div id="div2">
<input type="button" value="show" class="show">
</div>
</li>
</ul>
和jQuery:
$('.show').live("click", function () {
alert('test');
$(this).parent('li').children('span').show();
});
但我没有显示隐藏的跨度。
jsfiddle