0

我正在搜索一个 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.$);
4

1 回答 1

0

我不认为有一个简单的单行 jQuery 解决方案,但你可以使用插件来做到这一点,Dialog | jQuery UI例如:

演示

HTML:

 <select id = "myList">
     <option value = "1">one</option>
     <option value = "2">two</option>
     <option value = "3">three</option>
     <option value = "4">four</option>
</select>
<div id="dialog"></div>

JS:

$(function() {    
    $('#dialog').html('<img src="/url/to/myImage.png" />')
        .dialog()
        .parent()
        .hide();
  });

$('#myList').change(function() {
      $( "#dialog").dialog().parent().show();
});
于 2013-04-29T07:57:42.740 回答