我有一个价值 var head = comments;
comments是一个字符串 所以我可以使用像
这样的东西var hoverText='text=comments';
<div "+hoverText+"></div>
显示div中的字符串
答案 0 :(得分:0)
做这样的事情:
HTML:
<div id="commentDiv"></div>
JS:
var div= document.getElementById('commentDiv');
var hoverText= "some comments";
div.innerHTML= hoverText;