我试图让我的页面在关闭 jQuery Colorbox 窗口时进行实际的回发而不是完全重新加载。
这是我目前执行 Colorbox 的脚本。注意 onClosed 函数。
<script type="text/javascript">
$(document).ready(function () {
$(".iframe").colorbox({ iframe: true, width: "40%", height: "70%", transition: "elastic", onClosed: function () { window.location = window.location.href } });
});
</script>
我想要发生的只是将浏览器放入回发中,这样它就不会在重新加载时丢失文本框日历扩展器信息。
有没有人有什么建议?
非常感谢!