使用jQuery查找所选控件或文本框的标签

前端之家收集整理的这篇文章主要介绍了使用jQuery查找所选控件或文本框的标签前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想要一些jQuery代码,这将允许我找到一个控件的标签,当我点击文本框…所以在我的HTML我有这个:
<label id="ctl00_WebFormBody_lblProductMarkup"  for="ctl00_WebFormBody_txtPriceAdjustment">This Is My Label Value</label>

<input type="text" style="width:29px;" onclick="alert('label value here');" title="Here is a title" id="ctl00_WebFormBody_txtPriceAdjustment" maxlength="3" name="ctl00$WebFormBody$txtPriceAdjustment">

所以,当我点击我的文本框时,我想(例如)使用我的标签内的文本来做一个警报,所以在这种情况下,它会提醒“这是我的标签值”

希望有意义:)

解决方法

DEMO
$('input').focus(function(){
   var $myLabel = $('label[for="'+ this.id +'"]');
   // Here do something with $myLabel element
});

猜你在找的jQuery相关文章