2

我使用 HTML 服务制作了一个简单的 JQUERY UI Datepicker 应用程序,只是为了看看事情是如何工作的。它有一个文本框,单击时会显示日期选择器,旁边有一个本地化选择器。当我从开发人员链接执行它时,它虽然非常慢,但仍然有效。

但是,当我尝试从与 Dev 链接不同的 Web 发布链接执行相同的应用程序时,它不起作用。它显示文本框,但不显示允许您选择本地化的列表框。单击时它也不显示日期选择器。

代码.gs:

function doGet() {

Logger.log(getContent("jquidatepickerFR"));
Logger.log(getContent("jquidatepickerTR"));
var result=HtmlService.createTemplateFromFile('myPage').evaluate();
  Logger.log(result.getContent());  
return result;
}

function getContent(filename) {

var return1= HtmlService.createTemplateFromFile(filename).getRawContent();
return return1;
}

我的页面.html

<!doctype html>

<html lang="tr">
<head>
  <meta charset="utf-8" />
  <title>jQuery UI Datepicker - Localize calendar</title>
  <link rel="stylesheet" href="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.2/themes/smoothness/jquery-ui.css" />
  <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.js"></script>
  <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.2/jquery-ui.js"></script>


  <?!= getContent("jquidatepickerTR")?>
  <?!= getContent("jquidatepickerFR")?>
  <?!= getContent("style")?>
  <script>
  $(function() {
    $.datepicker.setDefaults( $.datepicker.regional[ "" ] );
    $( "#datepicker" ).datepicker( $.datepicker.regional[ "tr" ] );
    $( "#locale" ).change(function() {
      $( "#datepicker" ).datepicker( "option",
        $.datepicker.regional[ $( this ).val() ] );
    });
  });
  </script>
</head>
<body>

<p>Date: <input type="text" id="datepicker" />&nbsp;
  <select id="locale">
    <option value="tr"  selected="selected">Türkçe</option>
    <option value="fr">French (Français)</option>
  </select></p>


</body>
</html>

公共网络应用程序链接

这是什么原因造成的,有人知道吗?

4

1 回答 1

0

答案就在这里,我想(但我不明白......)。这是一个卡哈问题。

https://code.google.com/p/google-caja/issues/detail?id=1645

于 2013-05-08T20:42:27.423 回答