gpt4 book ai didi

jquery - 无法让 jQuery 警报在 Google Apps 脚本中运行

转载 作者:行者123 更新时间:2023-12-01 01:22:29 25 4
gpt4 key购买 nike

我无法在我的 GAS 项目中使用 jQuery 警报。我能够像这样包含基本的 jquery 库:

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> <link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>

但是,如果我尝试包含这些以使用 jAlert:

<script src="https://jquery.alerts.js" type="text/javascript"></script>
<link href="https://jquery.alerts.css" rel="stylesheet" type="text/css">

我在控制台中收到一条错误消息:“net::ERR_NAME_NOT_RESOLVED”。

如何包含 jquery 警报库以在 GAS 中使用?

注意:jquery.alerts.js 网站是否处于事件状态?我在那里没有看到任何内容(我是新手。我不知道这个网站是否应该存在)。

最佳答案

您可以在 Google Apps 脚本项目中添加 jquery.alerts 源。在Google Apps脚本项目中创建html文件jquery.alerts.css.html并将其源代码放入标签style中,例如

<style>
popup_container {
font-family: Arial, sans-serif;
font-size: 12px;
min-width: 300px; /* Dialog will be no smaller than this */
/*...and other code*/
</style>

然后创建html文件jquery.alerts.js.html并将其源代码放入标签script中,例如

<script type="text/javascript">
(function($) {<br/>
$.alerts = {
verticalOffset: -75,
horizontalOffset: 0,
repositionOnResize: true,
/*...and other code*/
</script>

然后你就可以通过 html 服务使用这个库了。示例:

<html>
<?!= include('jquery.alerts.css.html'); ?>
<?!= include('jquery.alerts.js.html'); ?>
<head>
<base target="_top">
</head>
<body>
<div>
<a href="http://google.com">Click Me!</a>
</div>
</body>
</html>

关于jquery - 无法让 jQuery 警报在 Google Apps 脚本中运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34409885/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com