javascript里面如何给全局变量赋值

我点击第一个button那么我想通过function进行对全局变量name的赋值 然后将abc显示到text文本里面去 点击第二个就显示qwe
求代码

<head>
<script type="text/javascript">
function test(str){
    document.getElementById("tt").value = str;
}
</script>
</head>
<body>
<button onclick="test('abc')"></button>
<button onclick="test('qwe')"></button>
<button onclick="test('zha')"></button>
<input type="text" id="tt" />
</body>

这种方式也能达到你想要的效果,其实可以不用使用全局变量,是需求中必须使用全局变量?

温馨提示:内容为网友见解,仅供参考
第1个回答  2015-02-09
<script>
var name;
function test(obj)
{
name = obj;
document.getElementById('show').value=name;
}
</script>
<form>
<input type="button" onClick="test('abc')">
<input type="button" onClick="test('qwe')">
<input type="button" onClick="test('zha')">
<input type="text" id="show">
</form>
相似回答