6

我正在尝试使用 JQuery UI 提供 Google Apps 脚本 HTML 服务。

我创建了一个带有日期字段的简单测试用例,但 datepicker 小部件的响应能力非常低。显示日期选择器至少需要 3 秒。导航到下个月也需要 3 秒。

我能做些什么来提高 JQuery UI 的性能吗?

这是 HTML 文件:

<html>
  <head>
    <link type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.23/themes/smoothness/jquery-ui.css" rel="Stylesheet" />
    <script type="text/javascript" src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
    <script type="text/javascript" src="http://code.jquery.com/ui/1.8.23/jquery-ui.min.js"></script>
    <script>
      $(document).ready(function() {
        $('#date').datepicker();
      });
    </script>
  </head>

  <body>
    <input type="text" name="date" id="date">
  </body>
</html>

来自 GS 的电话:

function doGet() {
  return HtmlService.createTemplateFromFile('test').evaluate();
}

控制台日志显示:

Node not editable; no action performed. es53-taming-frame.opt.js:419
ode not editable; no action performed. es53-taming-frame.opt.js:419
bad value `fixed` for CSS property position es53-taming-frame.opt.js:419
https://ssl.gstatic.com/caja/4969/es53-taming-frame.opt.js?debug=1
4

1 回答 1

2

这是一个已知问题,我们正在努力加快速度。

于 2012-09-13T18:13:55.720 回答