我有两个输入,我希望当用户点击按钮时,段落将文字更改为second input
™★signin()
©。我在Google上搜索了这个并没有找到任何结果。
提前谢谢。
答案 0 :(得分:0)
这可能就是你要找的东西。
function output() {
document.getElementById("output").innerHTML = document.getElementById("first").value + "™★" + document.getElementById("second").value + "©";
}
<input type="text" id="first" />
<input type="text" id="second" />
<input type="submit" onclick="output()" />
<p id="output"></p>