当您点击颜色选择器时,如何关闭虹膜颜色选择器? 我使用下面的代码
jQuery(document).ready(function($) {
$('.my-color-picker').iris({
palettes: true,
target: false
});
});
答案 0 :(得分:0)
试试这个: -
jQuery(document).ready(function ($) {
$('.my-color-picker').iris();
$(document).click(function (e) {
if (!$(e.target).is(".my-color-picker, .iris-picker, .iris-picker-inner")) {
$('.my-color-picker').iris('hide');
return false;
}
});
$('.my-color-picker').click(function (event) {
$('.my-color-picker').iris('hide');
$(this).iris('show');
return false;
});
});