iGoogle 中的 document.write ?
我正在 iGoogle 小工具中查找 document.write()
属性,如何在 iGoogle 小工具中执行以下操作?换句话说,我想要脚本中的 stdout var 。
<html> <body>
<script type="text/javascript"> var firstname; firstname="Hege"; document.write(firstname); document.write("<br />"); firstname="Tove"; document.write(firstname); </script>
<p>The script above declares a variable, assigns a value to it, displays the value, changes the value, and displays the value again.</p>
</body> </html>
I am looking for document.write()
property in iGoogle gadgets, how can I do the thing below in iGoogle gadget? In other words, I want stdout var in a script.
<html> <body>
<script type="text/javascript"> var firstname; firstname="Hege"; document.write(firstname); document.write("<br />"); firstname="Tove"; document.write(firstname); </script>
<p>The script above declares a variable, assigns a value to it, displays the value, changes the value, and displays the value again.</p>
</body> </html>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需将代码包含在带有 CDATA 的内容标记 [type=html] 中
Simply enclose the code in a Content tag [type=html] with a CDATA