這裏是我的代碼有JQuery的如何將值設置爲先前的輸入元素?
<input type="text" value="Select" class="inputClass"></input>
<div class="divClass">
<table>
<tr><td>Value1</td></tr>
<tr><td>Value2</td></tr>
</table>
</div>
我想,當用戶點擊一個TR設置輸入字段的值,我做這樣的事情:
$("tr").click(function() {
$(this).parent("div.divClass").prev("input.inputClass").val("SomeValue");
});
但它不是加工。這裏是鏈接到小提琴 - >Fiddle
誰能告訴我我要去哪裏錯了?
這爲我工作。 –
@ SachinB.R。很高興幫助。 :) – Beginner