0

我目前在 Confluence HTML 宏中使用 jQuery 来显示对话框。

<input type="text" id="shortName" style="height: 18px; width: 50px;">
<input type="submit" id="submit" value="calendar">
<script type="text/javascript">
jQuery(document).ready(function() {
  jQuery("#calendarDialog").dialog({
    modal: true,
    autoOpen: false,
    height: "600",
    width: "800",
    draggable: true,
    resizeable: true
  });
  jQuery("#submit").click(
    function() {
      var emp = jQuery("#shortName").val().replace('.', '');
      var url = <some-url>;
      var dialogTitle = emp + "'s day calendar";
      jQuery("#calendarDialog").dialog("open");
      jQuery("#calendarDialog").dialog( "option", "title", dialogTitle );
      jQuery("#calendarIFrame").attr("src", url);
      return false;
  });
    jQuery("#shortName").focus();
});
</script>
<div id="calendarDialog" style="overflow: none;"><iframe id="calendarIFrame" width="100%" height="99%" frameBorder="0" title="dialogBox"></iframe></div>

如何在 Confluence 中包含来自 jQuery UI 的内容?如果我在上面的代码中包含 jQuery UI(参考http://code.jquery.com/ui/1.9.0/jquery-ui.js)它会破坏宏中的 jQuery 代码。

4

1 回答 1

0

在 atlassian-plugin.xml 中:

<web-resource name="Resources" key="A-NAME-FOR-a-resource-key">
    <dependency>com.atlassian.auiplugin:ajs</dependency>
    <resource type="download" name="jquery-ui.js" location="js/jquery-ui.js"/>
    <resource type="download" name="jquery-ui.css" location="css/jquery-ui.css"/>
</web-resource>

在 file_name.vm 中:

$webResourceManager.requireResource("A-NAME-FOR-a-resource-key")

文件 jquery-ui.js 和 jquery-ui.css 应该存储在资源文件夹下

于 2014-11-25T15:01:22.390 回答