如何在HTML中将段落文本更改为文本框文本?

时间:2018-04-07 18:26:18

标签: html

我有两个输入,我希望当用户点击按钮时,段落将文字更改为second input™★signin()©。我在Google上搜索了这个并没有找到任何结果。

提前谢谢。

1 个答案:

答案 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>