这是我的近似代码:
<script>
function smth(){........}
var name = smth('fullname');
var hobby = smth('hobby');
</script>
我需要在html正文中正常显示它。但是,我尝试过的所有方法都给了我一个警告窗口,或者它根本无法正常工作。我没有找到类似的解决方案。
我知道上面的方法也可以提供警报窗口,但是我只是想向您展示获取变量的方式。
提前致谢。
最佳答案
因此,您想在<body>
后面附加一些文字吗?
function smth(str) {
return document.body.appendChild(document.createTextNode(str));
}
这是利用以下DOM方法
node.appendChild
document.createTextNode
(或document.createElement
)请注意,如果您需要格式化,它也不会引入格式设置(例如线制动器
<br />
)。