iframe.js
上传用户:kimgenplus
上传日期:2016-06-05
资源大小:20877k
文件大小:3k
源码类别:

OA系统

开发平台:

Java

  1. /*
  2. Copyright (c) 2004-2006, The Dojo Foundation
  3. All Rights Reserved.
  4. Licensed under the Academic Free License version 2.1 or above OR the
  5. modified BSD license. For more information on Dojo licensing, see:
  6. http://dojotoolkit.org/community/licensing.shtml
  7. */
  8. dojo.provide("dojo.html.iframe");
  9. dojo.require("dojo.html.util");
  10. dojo.html.iframeContentWindow = function (iframe_el) {
  11. var win = dojo.html.getDocumentWindow(dojo.html.iframeContentDocument(iframe_el)) || dojo.html.iframeContentDocument(iframe_el).__parent__ || (iframe_el.name && document.frames[iframe_el.name]) || null;
  12. return win;
  13. };
  14. dojo.html.iframeContentDocument = function (iframe_el) {
  15. var doc = iframe_el.contentDocument || ((iframe_el.contentWindow) && (iframe_el.contentWindow.document)) || ((iframe_el.name) && (document.frames[iframe_el.name]) && (document.frames[iframe_el.name].document)) || null;
  16. return doc;
  17. };
  18. dojo.html.BackgroundIframe = function (node) {
  19. if (dojo.render.html.ie55 || dojo.render.html.ie60) {
  20. var html = "<iframe src='javascript:false'" + " style='position: absolute; left: 0px; top: 0px; width: 100%; height: 100%;" + "z-index: -1; filter:Alpha(Opacity="0");' " + ">";
  21. this.iframe = dojo.doc().createElement(html);
  22. this.iframe.tabIndex = -1;
  23. if (node) {
  24. node.appendChild(this.iframe);
  25. this.domNode = node;
  26. } else {
  27. dojo.body().appendChild(this.iframe);
  28. this.iframe.style.display = "none";
  29. }
  30. }
  31. };
  32. dojo.lang.extend(dojo.html.BackgroundIframe, {iframe:null, onResized:function () {
  33. if (this.iframe && this.domNode && this.domNode.parentNode) {
  34. var outer = dojo.html.getMarginBox(this.domNode);
  35. if (outer.width == 0 || outer.height == 0) {
  36. dojo.lang.setTimeout(this, this.onResized, 100);
  37. return;
  38. }
  39. this.iframe.style.width = outer.width + "px";
  40. this.iframe.style.height = outer.height + "px";
  41. }
  42. }, size:function (node) {
  43. if (!this.iframe) {
  44. return;
  45. }
  46. var coords = dojo.html.toCoordinateObject(node, true, dojo.html.boxSizing.BORDER_BOX);
  47. with (this.iframe.style) {
  48. width = coords.width + "px";
  49. height = coords.height + "px";
  50. left = coords.left + "px";
  51. top = coords.top + "px";
  52. }
  53. }, setZIndex:function (node) {
  54. if (!this.iframe) {
  55. return;
  56. }
  57. if (dojo.dom.isNode(node)) {
  58. this.iframe.style.zIndex = dojo.html.getStyle(node, "z-index") - 1;
  59. } else {
  60. if (!isNaN(node)) {
  61. this.iframe.style.zIndex = node;
  62. }
  63. }
  64. }, show:function () {
  65. if (this.iframe) {
  66. this.iframe.style.display = "block";
  67. }
  68. }, hide:function () {
  69. if (this.iframe) {
  70. this.iframe.style.display = "none";
  71. }
  72. }, remove:function () {
  73. if (this.iframe) {
  74. dojo.html.removeNode(this.iframe, true);
  75. delete this.iframe;
  76. this.iframe = null;
  77. }
  78. }});