我目前在 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 代码。