DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> jQuery插件EasyUI實現Layout框架頁面中彈出窗體到最頂層效果(穿越iframe)
jQuery插件EasyUI實現Layout框架頁面中彈出窗體到最頂層效果(穿越iframe)
編輯:關於JavaScript     

本文實例講述了jQuery插件EasyUI實現Layout框架頁面中彈出窗體到最頂層效果。分享給大家供大家參考,具體如下:

function openTopWindow(url, title, width, height) {
  title = title == undefined ? ' ' : title;
  width = width == undefined ? 800 : width;
  height = height == undefined ? 300 : height;
  if (url != undefined) {
    var content = '<iframe name="eui-open-page" scrolling="auto" frameborder="0" src="' + url + '" style="width:100%;height:100%;"></iframe>';
    parent.$('#openWindow').window({
      title: title,
      width: width,
      height: height,
      content: content,
      modal: true,
      animate: true,
      minimizable: false
    });
  }
}

接下來需要在Layout主頁面放置一個div區域即可:

<!--Open Window Begin-->
<div id="openWindow"></div>
<!--Open Window End-->


XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved