有麻煩jQuery來訪問父窗體域「當從命名inputStartMonth使用jQuery輸入名稱
有什麼奇怪的選擇字段中選擇新值inputStart的價值訪問父元素是相似的語法上的工作在別處同一網站。我使用輸入的名稱和類,因爲我在同一頁面上多次重複相同的表單(使用不同的ID)。
任何建議將不勝感激。
下面是jQuery代碼:
$('input[name=inputStartMonth]').change(function() {
var month = $(this).val();
$(this).parent().find('input[name=inputStart]').val(month);
});
部分HTML:
<td><input name="inputStart" type="text" autocomplete="off" value="May '96">
<div class="startDateDrop hideThis dropForm">
<select name="inputStartMonth">
非常感謝。我曾嘗試使用select作爲輸入,但是這並不能解決任何問題 - 最接近的命令看起來會非常有幫助。感謝這個例子。 – jsuissa 2012-01-27 01:38:47