对于以下代码,我希望它可以打印
span1:
span:"dd"
我在文本框中键入dd,但最后显示为
span1:
span:"dd
dd
之后的所有事情都消失了!
<html> <head> <script>
function check(){
var txt=document.getElementById("hello").value;
document.getElementById("sp").innerHTML=txt;
} </script>
</head> <body>
<input type="text" id="hello"/><br/>
span1:<span id="sp1"/><br/>
span:"<span id="sp"/>" <br/>
<input type="submit" onclick="check()"/><br/> </body>
</html>