对 Jira 的问题收集器有疑问。
对于那些拥有 Jira 但对问题收集器一无所知的人 - 管理员 -> 项目 -> AnyProject -> 问题收集器(左) -> 添加问题收集器。完成所有配置后,您将获得一个 js 脚本,该脚本必须嵌入到一个 html 页面中。这个 js 脚本能够触发 Jira 问题收集器弹出窗口。
我想显示弹出问题收集器窗口并用一些额外的 html 标签注入它。基本上我想将弹出窗口一分为二,并在窗口顶部显示“注册新问题”,在窗口底部显示所有已注册问题。
现在我在加载页面时显示弹出窗口(此脚本在加载网页时触发问题收集器的弹出窗口 - jQuery(document).ready(..) ):
<html>
<head>
<script src="http://code.jquery.com/jquery-1.8.3.js"></script>
<script type="text/javascript" src="put_your_own_jira_issue_collector_link"></script>
<script type="text/javascript">
jQuery.ajax({
url: "put_your_own_jira_issue_collector_link",
type: "get",
cache: true,
dataType: "script"
});
jQuery(document).ready(function () {
window.ATL_JQ_PAGE_PROPS = {
"triggerFunction": function (showCollectorDialog) {
jQuery(document).ready(function () {
showCollectorDialog();
});
}
}
});
</script>
</head>
<body>
</body>
</html>
当我们打开网页时会显示弹出窗口。页面结构如下:
<html>
<body>
<div id="atlwdg-blanket" class="atlwdg-blanket">
<div id="atlwdg-container" class="atlwdg-popup atlwdg-box-shadow atlwdg-hidden">
<iframe id="atlwdg-frame">
<html class="chrome webkit">
<body id="atlScriptlet">
<div class="aui-dialog collector-dialog custom-collector">
<form id="jic-collector-form" class="aui ">
...
然后我尝试使用 jQuery 注入,但没有任何运气。我无法直接注入弹出窗口。所以我开始想知道是否可以在跨域请求时注入。或者也许存在另一种方法来完成这项任务
有jQuery经验的人可以帮忙吗
PS 更详细一点 - 此页面将显示在除任何商业浏览器之外的另一个环境中的 WebView 组件中
图形化: