2

我有这些输入:

<input type='radio' id='1' name='s' onclick='pieces(this.value);'  value='6'>6
<input type='radio' id='2' name='s' onclick='pieces(this.value);'  value='12'>12
<input type='radio' id='3' name='s' onclick='pieces(this.value);'  value='24'>24
<input type='radio' id='11' name='v' onclick='pieces(this.value);'  value='yes'>Yes
<input type='radio' id='12' name='v' onclick='pieces(this.value);'  value='no'>No

pieces(var1, var2)当单击单选按钮时,我想将“name='s'”中的值传递给 var1,并将“name='v'”中的值传递给 var2 。

4

3 回答 3

1

您可以使用方法在 Javascript 方法本身中获取两个无线电输入的值,document.getElementsByName()或者这也应该有效,
尝试使用func(document.getElementsByName('s'),document.getElementsByName('v'))

下面的代码应该有帮助,

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
<script src="js1/jquery.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
    alert('Ok');
    $('#btn').click(function(){
        var r1=$('input:radio[name=s]').val();
        var r2=$('input:radio[name=v]').val();
        show(r1,r2);
    });
});

function show(r1,r2){
    alert(r1);
    alert(r2);
}
</script>
</head>
<body>
<input type='radio' id='1' name='s' onclick='pieces(this.value);'  value='6'>6
<input type='radio' id='2' name='s' onclick='pieces(this.value);'  value='12'>12
<input type='radio' id='3' name='s' onclick='pieces(this.value);'  value='24'>24


<input type='radio' id='11' name='v' onclick='pieces(this.value);'  value='yes'>Yes
<input type='radio' id='12' name='v' onclick='pieces(this.value);'  value='no'>No

<button id="btn">Submit</button>
</body>
</html>
于 2012-06-30T06:01:02.893 回答
1

您可以通过以下不同方式传递参数:

function antguider(name, url){
    alert("Name = "+name+" URL = "+url);
}

HTML 部分

<input type="button" onclick=antguider('AntGuider','http://antguider.blogspot.com') value="Click Without Quotation" />
<input type="button" onclick="antguider('AntGuider','http://antguider.blogspot.com')" value="Click With Quotation" />
<input type="button" onclick="antguider(12345,'http://antguider.blogspot.com')" value="No Quotation Needed For Button" />
于 2012-06-30T06:08:22.807 回答
0

对于 2 个输入,这可以使用 JQuery 轻松完成。

va1=$("input[name=s]").val();
va2=$("input[name=v]").val();

然后调用所需的函数,将您的值作为参数传递。

func(va1,va2);
于 2012-06-30T05:52:56.047 回答