1

以下链接Jquery 用于在按钮单击时传递选定的单选按钮值。它对我来说工作正常。

在上面的问题中,我想在单选按钮单击而不是按钮单击中传递值(并显示在下拉框和文本框中)。这怎么可能。

4

2 回答 2

1

试试这个

"<input type="radio" name="joblist" onclick="myfunc(this);" id= ' + value.jobid + 'value=' + value.jobid + '/>"

function  myfunc(ele){
 var $tr=$(ele).parent().parent(); ....
 //the rest of the code
}

选择您想要的。

 $("#OS option").each(function(){
    if($(this).val()==os)
      $(this).attr('selected','selected');
    else
       $(this).removeAttr('selected');
 });
于 2013-08-23T10:42:58.190 回答
0

演示

试试这个

$(document).ready(function() {
    $("input[type='radio']").click(function () {

            alert($(this).val());

    });
});

和单选按钮 HTML

<input type="radio" value="male" name="sex" />male
<input type="radio" value="female" name="sex" />female

希望这会有所帮助,谢谢

于 2013-08-23T11:28:15.543 回答