作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
是否可以让javascript在javascript代码所在的位置输出html?
例如
<html>
<head>
<title>
</title>
</head>
<body>
<div>header</div>
<div>main
<script type="text/javascript" language="javascript">
// print some html here, maybe <a href="http://www.google.com">google</a>
</script>
</div>
<div>footer</div>
</body>
</html>
最终结果应该是这样的:
<html>
<head>
<title>
</title>
</head>
<body>
<div>header</div>
<div>main<a href="http://www.google.com">google</a></div>
</script>
</div>
<div>footer</div>
</body>
</html>
我知道我可以提供包含的 div 和 id,然后让 javascript 像那样插入 anchor ,但我只是想知道是否可以直接执行此操作,就像在 javascript 所在的位置编写 html ?
最佳答案
为此使用 document.write('YOUR_TEXT')
<script type="text/javascript" language="javascript">
document.write('<a href="http://www.google.com">google</a>')
</script>
关于javascript - 让javascript准确地在原处写入文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11138999/
我是一名优秀的程序员,十分优秀!