请检查我的以下javascript函数。我想在我的第二个函数showUser中调用用户。我试过但却无法获得价值。它给了我undefined
。
功能一
<script>
var user;
function choose(choice){
user = choice;
alert("You got the value " + user);
}
</script>
函数second我想从上面的函数调用var user。
<script type="text/javascript">
function showUser(str)
{
if (str=="")
{
document.getElementById("txtHint").innerHTML="";
return;
}
if (window.XMLHttpRequest)
{
xmlhttp=new XMLHttpRequest();
} else {
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("txtHint").innerHTML=xmlhttp.responseText;
}
}
var buttonValue = document.getElementsByName('buttonpassvalue').item(0).value;
var buttonValue1 = user;
alert("checking buttonvalue1 " + buttonValue1);
var drdownValue = document.getElementsByName('shorting').item(0).value;
xmlhttp.open("GET", "productlistajax.php?q=" + drdownValue + "&version=" + buttonValue + "&version1=" + buttonValue1, true);
xmlhttp.send();
}
</script>
答案 0 :(得分:1)
还有其他问题,这(基本上你想要的就是我理解的)应该有效:
var user;
function choose(choice)
{
user = choice;
alert("You got the value " + user);
}
function showUser(str)
{
var buttonValue1 = user;
alert("checking buttonvalue1 " + buttonValue1);
}
choose('test');
showUser('whatever');