我想要的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">
所以,当我点击我的文本框,我想(例如)做一个警报.与我的标签内的文本-所以在这种情况下,它会警告“这是我的标签值”
希望有意义:)
6条答案
按热度按时间vmpqdwk31#
使用属性选择器
[]
,如'[for="'+ this.id +'"]'
,其中this.id
是当前focus
艾德label
的 IDfkvaft9z2#
在这样的HTML代码中:
你可以找到这样的标签内容:
x4shl7ld3#
或可能
根据你的标记,你也可以选择下一个或上一个兄弟。
rfbsl7qr4#
试试这个:
57hvy0tb5#
e5nqia276#
用JavaScript来做