Google 协作平台中的 JavaScript/jQuery 限制?

发布于 2024-11-05 06:52:19 字数 133 浏览 4 评论 0原文

我的客户有一个 Google 网站,并且正在请求一些 jQuery/javascript 功能,例如灯箱等。我可以假设我可以处理大多数通用 jQuery/javascript 功能(通过小工具 API),还是有我需要了解的限制?

谢谢-

My client has a Google site and is requesting some jQuery/javascript functionality like lightboxes, etc. Can I assume I can tackle most generic jQuery/javascript features (By way of the gadgets API), or are there limitations I need to know about?

Thanks-

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

隐诗 2024-11-12 06:52:19

哇,我刚刚在 Google 上搜索了 Google Sites JQuery,出现的第一页是回答您问题的 Google 常见问题解答。

我可以在 Google 网站中使用 JQuery 吗?

最受欢迎的答案:

是的,你可以。一步一步:将“安全 html 绕过”小工具添加到您的网站。然后在小工具的属性部分中,插入以下 html:

<script type="text/javascript"  src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script>

之后,您可以通过添加更多 html 元素和 javascript 来使用 jquery。
示例代码

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script>
<input type="text" value="oerten" id="text" onclick="" />
<input type="button" value="Click" id="but" onclick="var val=$('#text').attr('value');alert(val);" />
<br />  
只需将此代码片段粘贴到
“安全 html”的“HTML 代码”部分
绕过”小工具。保存并运行

进一步阅读:

如何使用小工具向 Google 网站添加 JavaScript 或自定义内容

Wow I just googled Google Sites JQuery and the first page that came was a google FAQ answering your question.

Can I use JQuery in Google sites?

The most popular answer:

Yes you can. Step by step : Add "safe html bypass" gadget to your site. Then in the properties section of the gadget, insert this html :

<script type="text/javascript"  src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script>

After that you can use jquery by adding more html elements and javascript.
Example code :

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script>
<input type="text" value="oerten" id="text" onclick="" />
<input type="button" value="Click" id="but" onclick="var val=$('#text').attr('value');alert(val);" />
<br />  
Just paste this code snippet into the
"HTML Code" section of the "safe html
bypass" gadget. Save it and go

Further Reading:

How to add javascript or custom contents to google sites with gadget

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