使用text属性动态显示html中div的值

时间:2016-02-25 13:00:11

标签: html

我有一个价值     var head = comments;

comments是一个字符串 所以我可以使用像

这样的东西
var hoverText='text=comments';
<div "+hoverText+"></div>

显示div中的字符串

1 个答案:

答案 0 :(得分:0)

做这样的事情:

HTML:

<div id="commentDiv"></div>

JS:

var div= document.getElementById('commentDiv');
var hoverText= "some comments";
div.innerHTML= hoverText;