2013-08-21 100 views

回答

-1

通常我會用對話框來顯示窗體。下面是示例代碼,看看是否符合您的要求或不

$('#button').click(function() { 
      showDialog("Your URL ",'TITLE', 400, 320); 
     }); 



    function showDialog(url, title, iwidth, iheight) { 

var dialog = $('<div id="divpopup"><iframe id="iframedit" src="' + url + '" style="width:' + iwidth + 'px;height:' + iheight + 'px;" frameborder="0" ></iframe></div>').appendTo('body'); 
//dialog.remove(); 
dialog.dialog({ 
    title: title, 
    autoResize: true, 
    height: 'auto', 
    width: 'auto', 
    modal: true, 
    position: 'center', 
    draggable: true, 
    open: function (type, data) { }, 
    close: function (type, data) { } 
}) 
); 
} 
+0

沒有提供任何線索解決問題 – faisalbhagat

相關問題