我有一個鏈接,稱爲彈出視圖名爲class =「iframe」。 我計劃在彈出窗口裏面設置一個窗體,但是我的問題是我需要關閉那些彈出後點擊提交然後我的原始頁面,或者我彈出的背景會自己刷新它。 我的腳本:提交後關閉iframe
<script src="<?php echo base_url(); ?>template/popup/jquery.colorbox.js"></script>
<script type="text/javascript">
var $ = jQuery.noConflict();
$(document).ready(function(){
//Examples of how to assign the Colorbox event to elements
$(".iframe").colorbox({iframe:true, width:"50%", height:"78%"});
//Example of preserving a JavaScript event for inline calls.
$("#click").click(function(){
$('#click').css({"background-color":"#f00", "color":"#fff", "cursor":"inherit"}).text("Open this window again and this message will still be here.");
return false;
});
});
</script>
<a class='iframe' href="#">POP UP </a>
親愛的Ayrit,謝謝你,夥計,它已經幫了我一些忙,當我關上窗戶時,怎麼可以當前窗口是否自動刷新? – Mauliardiwinoto