我正在搜索一个 Jquery 函数,它应该获取图像的 URL,并且在检查 Jira 创建问题屏幕中单选按钮的特定选项时应该出现一个弹出图像。
(function($) {
$('#customfield_12802-1').change(function() {
alert('Image pop should come, instead of the alert box');
});
$('#customfield_12802-2').change(function() {
alert('Image pop should come, instead of the alert box');
});
})(AJS.$);