如何使用多个按钮创建html,但结果应显示在一个文本框中 并且应该预先定义文本,即如果按下Button1,它应该在文本框中显示预定义的文本...
而且,如果你可以通过脚本在剪贴板中复制相同的文本......
非常感谢提前
答案 0 :(得分:0)
查看以下内容, http://jsfiddle.net/eHzwF/
<html>
<head>
<script>
function clickedIt(buttonValue){
document.getElementById('txt').value = buttonValue;
}
</script>
</head>
<body>
<input type='text' id='txt' value=''/>
<input type='button' value='Button1' onclick='clickedIt("Button1")'/>
<input type='button' value='Button2' onclick='clickedIt("Button2")'/>
<input type='button' value='Button3' onclick='clickedIt("Button3")'/>
</body>
</html>
这是你想要做的吗?