我想知道我是否可以在javascript中使用字符串变量,如下所示:
var str =
'<html>
<head>
<title>Status page</title>
</head>
<body style="font-family: sans-serif;">
<p style="font-size: 1.2em;font-weight: bold;margin: 1em 0px;">Forbidden</p>
<p>Attempting to finish {Interaction5e8d4072-6b49-4e69-b084-1d8e741f4f10.habla}, an interaction without cleaned dependencies</p>
<p>You can get technical details <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.4">here</a>.<br>
Please continue your visit at our
<a href="/">home page</a>.
</p>
</body>
</html>';
就像一个DOM对象以及如何。
谢谢!
答案 0 :(得分:1)
是的,如果真的有问题,你能不能。
var str = '<p>Some paragraph</p>';
document.write(str); // Or
document.getElementById('id').innerHTML(str);