我正在尝试通过以下代码传递价值,但无法请任何人检查,也许我在某个地方弄错了
<input type="button" name="vote" value="Yes" width="100" onclick="getVote('; echo "y".$info['autoid']; echo')"/>
问题出在以下行“y”.$info['autoid']; 如果我删除“y”。它工作正常。但我想传递 y 和产品 ID。
基本上我正在尝试将 y 与 int 结合起来。
好的,这里是完整的代码。
<script type="text/javascript">
function getVote(int)
{
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("poll").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","../poll/"+int,true);
xmlhttp.send();
}
</script>
<div id="poll">
<form>
poll - :
<input type="button" name="vote" value="Yes" width="100" onclick="getVote('; echo "y".$info['autoid']; echo')"/>
<input type="button" name="vote" value="No" width="100" onclick="getVote('; echo "n".$info['autoid']; echo')"/>
</form>
</div>
谢谢大家...我找到了另一种方式,我们可以通过“-”表示是,而为“n”则为空
<input type="button" name="vote" value="Yes" width="100" onclick="getVote('; echo "-".$info['autoid']; echo')"/>
<input type="button" name="vote" value="No" width="100" onclick="getVote('; echo $info['autoid']; echo')"/>