单选按钮的代码有什么问题?当我尝试 SELECT/OPTION 时,它正在工作。
我正在尝试制作两组单选按钮,获取它们的值并进行总结。但我无法通过,因为单选按钮根本没有响应。
这些是我的表单的输入:
<input type='radio' id='1' name='r' onclick='pieces('this.value')'
autocomplete='off' value='yes'>Yes
<input type='radio' id='2' name='r' onclick='pieces('this.value')'
autocomplete='off' value='no'>No
我的脚本:
<script type='text/javascript'>
function pieces(str)
{
if (str=='')
{
document.getElementById(abc).innerHTML='';
return;
}
if (window.XMLHttpRequest)
{
// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{
// code for IE6, IE5
xmlhttp=new ActiveXObject('Microsoft.XMLHTTP');
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById(abc).innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open('GET','price.php?q='+str,true);
xmlhttp.send();
}
</script>