所以为了显示这个模式,我有以下代码:
<button type="button" onclick="openModal(); return false;">A button</button>
并且为此的javascript是:
<script type='text/javascript'>
function openModal(a)
{
$.modal({
content: 'Some content here',
title: 'a title',
maxWidth: 500,
});
win.closeModal();
}
</script>
我需要一个可以隐藏它的功能。谁能给我一些关于如何执行 hideModal() 功能的建议,当我单击屏幕上的任何位置时,该功能将隐藏模式?