在 MS Word 文件中嵌入 HTML
我正在尝试将 HTML 嵌入到 MS Word 文件中,以便当通过网站的超链接加载此页面时,它将遵循我的 CSS/javascript 中设置的规则。我还想将此代码嵌入到文件中:
<body onload="setTimeout(function() { window.scrollTo(0, 1) }, 100);">
这可能吗?
I'm trying to embed HTML into a MS Word file so that when this page is loaded via hyperlink from website it will follow the rules set in my CSS/javascript. I also want to embed this code into the file:
<body onload="setTimeout(function() { window.scrollTo(0, 1) }, 100);">
Would this be possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,这是不可能的。您希望在 Word 文档中编写的任何代码都必须以 Word 支持的格式(例如我上次查看的 Visual Basic for Applications)编写,而不是嵌入式 HTML。
No, it isn't possible. Any code you wish to write in a Word document must be written in a format that Word supports (such as, last time I looked at it, Visual Basic for Applications), not as embedded HTML.