0
嗨,我想作中,我需要做的化妝單選按鈕上點擊其他IDV
檢查單選按鈕,根據按鈕的屬性值
AA功能檢查
它應該等於單選按鈕值。
下面是我的代碼
<table id="oustandingItems">
<tr><th>Category</th></tr>
<tr><td><input type="radio" name="mytest" value='124' /></td></tr>
<tr><td><input type="radio" name="mytest" value="123"/></td></tr>
</table>
<button title ="124" class="findRow">Find Row</button>
<button title ="123" class="findRow">Find Row</button>
$(".findRow").click(function() {
var rad = $(this).attr('title');
//alert($(this).attr('title'));
var myValue = $('#oustandingItems').find('input[value=rad]').val()
alert(myValue);
//$("#myRow").val(myValue);
});
我需要做的單選按鈕選中衛生組織的價值將等於按鈕標題谷
<button title ="124" class="findRow">Find Row</button> <button title ="123" class="findRow">Find Row</button>
,但是這是不工作,請建議我如何實現這一點
謝謝
waao多數民衆贊成在工作完美謝謝 –
嗨,你可以請也hlp我在 $(this).css(「border」,「1px solid black」);我添加了這個使點擊元素突出顯示它的作品,但當我點擊其他元素,也得到突出顯示,我需要突出顯示一個元素在 –
@RohitGoel請參閱http://jsfiddle.net/arunpjohny/2xbYp/2/ –