我有兩個輸入字段的字段具有相同的類,一個顯示:無。我想查詢不顯示輸入字段的值:無。是否有可能使一個元素對jquery不可見
EDIT(與實施例)
<div id="Parent1" style="display:none">
<p>
<input type="text" class="title" value="">
</p>
</div>
<div id="Parent2">
<p>
<input type="text" class="title" value="this is the one I want">
</p>
</div>
JS
$('.title').val();
返回空白由於第一標題類是空的。我想忽略父母顯示的第一個標題:無。
關於您的問題,您的標題是相當混亂的... –
也添加相應的HTML – Tushar