2013-12-14 38 views
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> 

,但是這是不工作,請建議我如何實現這一點

謝謝

回答

1

您需要使用字符串連接來使用變量值的rad否則搜索具有價值rad,而不是尋找存儲在變量rad

$('#oustandingItems').find('input[value=' + rad + ']').prop('checked', true) 

var myValue = $('#oustandingItems').find('input[value=' + rad + ']').val() 

演示的值輸入元素:Fiddle

+0

waao多數民衆贊成在工作完美謝謝 –

+0

嗨,你可以請也hlp我在 $(this).css(「border」,「1px solid black」);我添加了這個使點擊元素突出顯示它的作品,但當我點擊其他元素,也得到突出顯示,我需要突出顯示一個元素在 –

+1

@RohitGoel請參閱http://jsfiddle.net/arunpjohny/2xbYp/2/ –

相關問題