【发布时间】:2014-07-31 14:26:11
【问题描述】:
我正在制作饥饿游戏模拟,这是我的代码:
console.log(data);
document.getElementById("playarea").innerHTML = data;
console.log(document.getElementById("playarea").innerHTML);
当我将变量 data 记录到控制台时,它会给出以下结果,
<img src='img/fight.png'><br />
You grabbed a loaf of bread out of the crate, the girl from 9 comes to you for a fight.
<br />
<button onclick=fight('You grabbed a loaf of bread out of the crate, the girl from 9
comes to you for a fight.','','',4,1,2)>
Punch in the head
</button><br />
<button onclick=fight('You grabbed a loaf of bread out of the crate, the girl from 9
comes to you for a fight.','','',4,1,2)>Punch in the chest</button><br />
当我记录 innerHTML 的 playarea 时,我得到了
<img src="img/fight.png"><br>
You grabbed a loaf of bread out of the crate, the girl from 9 comes to you for a fight.
<br>
<button onclick="fight('You" grabbed="" a="" loaf="" of="" bread="" out="" the=""
crate,="" girl="" from="" 9="" comes="" to="" you="" for=""
fight.','','',4,1,2)="">
Punch in the head
</button><br>
<button onclick="fight('You" grabbed="" a="" loaf="" of="" bread="" out="" the=""
crate,="" girl="" from="" 9="" comes="" to="" you="" for=""
fight.','','',4,1,2)="">
Punch in the chest
</button><br>
在onclick 中,它分隔每个单词并将它们视为变量。
如何使innerHTML 与数据变量相同?
【问题讨论】:
-
最好用jQuery,忘记引号问题。 $("#playarea").html(数据)
标签: javascript html onclick innerhtml