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