我有这个可点击的链接,
<a href="#" id="link">Clickable Link</a>
我有这个<input>
,点击链接后会出来,
<input id="geo_title" type="text" value="some value" class="geo_title" style="display:none" />
在我的剧本中,
$('#link').click(function(){
$("input#geo_title").focus();
});
但遗憾的是,这并没有集中元素。我想要的是,在我单击链接后,将突出显示 的value
属性,<input>
而我不必单击元素就可以输入内容。我错过了什么?非常感谢您的帮助。谢谢。
注意:实际代码。我已经有另一个这样的活动
$('#link').live('click',function(){
$(this).hide();
$('span.title').hide();
$('#geo_title').removeAttr('style').removeClass('active_geo_title').css({'padding-top':'10px','padding-bottom':'10px','padding-right':'10px','width':'120%'});
$("input#geo_title").select();
return false;
});