我如何在其内容中访问 Boxy 的实例。我有一个在 Boxy 中加载表单的链接。它显示四四方方的弹出窗口并且工作正常。现在我想从表单提交函数访问 boxy 的实例。我怎样才能做到这一点。我有下面的代码。
$('a.boxy').boxy({
modal:true,
show:true,
title:' ',
closeable:true,
center:true,
});//boxy
链接正在加载表单
<form name="subscribe" >
name <input type="text" name="name" value="' /> <br />
email <input type="text" name="email" value="' /><br />
<input type="submit" name="submit" value="subscribe" onclick="submitform()" />
</form>
<script>
function submitform()
{
// here i want to access the boxy instance
// also here i want to refer it and close it
}
</script>
亲切的建议
编辑:我想获取加载我的表单的 Boxy 实例。我不想访问该链接。