如何在 Blogger 中添加 JavaScript?
我想在 Blogger 中添加一些 JavaScript。
<script type="text/javascript">
window.open("http://www.page.html", "myWindow",
"status = 1, height = 400, width = 400, resizable = 0");
</script>
如果我编辑 HTML 并添加 "
和 '
它们会转换为 quote ...
如果我添加 HTML/JavaScript 小部件,代码不会运行。
I would like to add some JavaScript inside Blogger.
<script type="text/javascript">
window.open("http://www.page.html", "myWindow",
"status = 1, height = 400, width = 400, resizable = 0");
</script>
If I edit the HTML and I add "
and '
they get converted to quote ...
If I add an HTML/JavaScript widget the code won't run.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
导航到“布局”选项卡,单击“添加页面元素”选项,然后选择“HTML/Javascript”子选项。
如需了解更多详情,请参阅布局指南。
Navigate to the Layout tab, click the "Add a Page Element" option and select the "HTML/Javascript" sub-option.
See the Layout Guide for more details.
创建帖子。单击以输入 html,而不是撰写。输入您的脚本。点击右侧的发布设置>> 选项>> 撰写模式然后将按字面显示 HTML 更改为解释 HTML。它现在应该接受您的脚本作为脚本而不是文本。
Create a post. Click to enter html as opposed to compose. Type your script. To the right Click Post Settings >> Options >> Compose Mode then change Show HTML Literally to Interpret HTML. It should now accept your script as a script intsead of text..
像这样添加您的代码:
Add your code like this:
您可以将此代码作为外部源在您的博客上运行。如何?请按照以下步骤操作:
第 1 步:将 JavaScript 代码存储在 github.com、pastebin.com 或任何文件 CDN 中。
步骤 2:使用下面的代码从外部源调用您的 JavaScript 代码:
将此代码包含在
中。
You can run this code as an external source on your blog. How? Follow the below steps:
Step 1: Store your JavaScript code in github.com, pastebin.com or any file CDN.
Step 2: Use the below piece of code to call your JavaScript code from that external source:
Include this code inside
<head>
.选择模板。然后单击“编辑 HTML”。现在您可以添加脚本。
Select Template. And click 'Edit HTML'. Now you can add your script.
您应该能够将其添加到页面模板中。您可以在 Blogger 界面中编辑它们或下载/编辑/上传它们。
You should be able to add it to the page template. You can edit them from within the Blogger interface or download/edit/upload them.