我有两个这样的输入字段
<input type="text" class="span3" id name="name" >
<input type="text" class="span3" id name="phone" >
<div class="show-example1">
show content 1
</div>
<div class="show-example2">
show content 2
</div>
单击输入字段“名称”后,我只想显示 div 元素“show-example1”
并在单击输入字段“电话”后仅显示 div 元素“show-example2”
为此,我制作了与每个输入字段关联的两个 div 元素。
以下是我执行上述操作的脚本
$('.show-example1').hide();
$('.show-example2').hide();
$("input[name='name']").bind("click", function(event){
$('.show-example2').hide();
$('.show-example1').show(400);
return false;
});
$("input[name='phone']").bind("click", function(event){
$('.show-example1').hide();
$('.show-example2').show(400);
return false;
});
我的脚本运行良好,但我只想知道一种更好的方法来执行上述操作。