alert($('.input-large[name="name"]:parent:parent').html());
我的HTML是:jQuery的組合多個選擇
<div class="control-group">
<label for="name" class="control-label">Clinic Name</label>
<div class="controls">
<input type="text" name="name" id="name" class="input-large" value="">
</div>
</div>
我在警報越來越空。如何找到輸入元素父級的父級?
應該總是通過選擇ID,只要有可能,所以你可以直接跳到#name,而不是像Zoltan Toth在他的回答中所建議的那樣使用該類。 – jholloman 2012-07-27 19:33:29