如何在 Blogger 中添加 JavaScript?

发布于 2024-11-16 18:51:23 字数 353 浏览 1 评论 0原文

我想在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

挽你眉间 2024-11-23 18:51:23

导航到“布局”选项卡,单击“添加页面元素”选项,然后选择“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.

瞳孔里扚悲伤 2024-11-23 18:51:23

创建帖子。单击以输入 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..

天气好吗我好吗 2024-11-23 18:51:23

像这样添加您的代码:

<script type='text/javascript'>
//<![CDATA[

window.open("http://www.page.html", "myWindow", 
    "status = 1, height = 400, width = 400, resizable = 0");

//]]>
</script>

Add your code like this:

<script type='text/javascript'>
//<![CDATA[

window.open("http://www.page.html", "myWindow", 
    "status = 1, height = 400, width = 400, resizable = 0");

//]]>
</script>
假扮的天使 2024-11-23 18:51:23

您可以将此代码作为外部源在您的博客上运行。如何?请按照以下步骤操作:

第 1 步:将 JavaScript 代码存储在 github.com、pastebin.com 或任何文件 CDN 中。

步骤 2:使用下面的代码从外部源调用您的 JavaScript 代码:

<script src="http://example.com/script.js"/></script>

将此代码包含在 中。

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:

<script src="http://example.com/script.js"/></script>

Include this code inside <head>.

赤濁 2024-11-23 18:51:23

选择模板。然后单击“编辑 HTML”。现在您可以添加脚本。

输入图片此处描述

Select Template. And click 'Edit HTML'. Now you can add your script.

enter image description here

暮年 2024-11-23 18:51:23

您应该能够将其添加到页面模板中。您可以在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文