`
cjc
  • 浏览: 691811 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

备忘:base 标签和ShowModalDialog 、showModelessDialog

阅读更多
<script>function StorePage(){d=document;t=d.selection?(d.selection.type!='None'?d.selection.createRange().text:''):(d.getSelection?d.getSelection():'');void(keyit=window.open('http://www.365key.com/storeit.aspx?t='+escape(d.title)+'&u='+escape(d.location.href)+'&c='+escape(t),'keyit','scrollbars=no,width=475,height=575,left=75,top=20,status=no,resizable=yes'));keyit.focus();}</script>

在是用ShowModalDialog 弹出子窗体中在标签后,加入<base target="_self">后,对于子窗体:

1、POSTBACK后不会打开新窗体。
2、使用window.open()关闭窗体避免弹出另外一个同样的窗口。

-----------------------------------------------------
附:showModalDialog()、showModelessDialog()方法使用详解

Javascript有许多内建的方法来产生对话框,如:window.alert(), window.confirm(),window.prompt().等。
然而IE提供更多的方法支持对话框。如:

showModalDialog() (IE 4+ 支持)

showModelessDialog() (IE 5+ 支持)

window.showModalDialog()方法用来创建一个显示HTML内容的模态对话框,由于是对话框,因此它并没有一般用window.open()打开的窗口的所有属性。

window.showModelessDialog()方法用来创建一个显示HTML内容的非模态对话框。

当我们用showModelessDialog()打开窗口时,不必用window.close()去关闭它,当以非模态方式[IE5]打开时,
打开对话框的窗口仍可以进行其他的操作,即对话框不总是最上面的焦点,当打开它的窗口URL改变时,它自动关闭。而模态[IE4]方式的对话框始终有焦点(焦点不可移走,直到它关闭)。模态对话框和打开它的窗口相联系,因此我们打开另外的窗口时,他们的链接关系依然保存,并且隐藏在活动窗口的下面。

使用方法如下:

vReturnValue = window.showModalDialog(sURL [, vArguments] [, sFeatures])

vReturnValue = window.showModelessDialog(sURL [, vArguments] [, sFeatures])

参数说明:

sURL

必选参数,类型:字符串。用来指定对话框要显示的文档的URL。

vArguments

可选参数,类型:变体。用来向对话框传递参数。传递的参数类型不限,包括数组等。对话框通过window.dialogArguments来取得传递进来的参数。

sFeatures

可选参数,类型:字符串。用来描述对话框的外观等信息,可以使用以下的一个或几个,用分号“;”隔开。

dialogHeight 对话框高度,不小于100px,IE4中dialogHeight 和 dialogWidth
默认的单位是em,而IE5中是px,为方便其见,在定义modal方式的对话框时,用px做单位。

dialogWidth: 对话框宽度。

dialogLeft: 距离桌面左的距离。

dialogTop: 离桌面上的距离。

center: {yes | no | 1 | 0 }:窗口是否居中,默认yes,但仍可以指定高度和宽度。

help: {yes | no | 1 | 0 }:是否显示帮助按钮,默认yes。

resizable: {yes | no | 1 | 0 } [IE5+]:是否可被改变大小。默认no。

status: {yes | no | 1 | 0 } [IE5+]:是否显示状态栏。默认为yes[ Modeless]或no[Modal]。

scroll:{ yes | no | 1 | 0 | on | off }:指明对话框是否显示滚动条。默认为yes。

还有几个属性是用在HTA中的,在一般的网页中一般不使用。

dialogHide:{ yes | no | 1 | 0 | on | off }:在打印或者打印预览时对话框是否隐藏。默认为no。

edge:{ sunken | raised }:指明对话框的边框样式。默认为raised。

unadorned:{ yes | no | 1 | 0 | on | off }:默认为no。

传入参数:

要想对话框传递参数,是通过vArguments来进行传递的。类型不限制,对于字符串类型,最大为4096个字符。也可以传递对象,例如:

test1.htm

====================

<script></script>

var mxh1 = new Array("test1","test2","test3")

var mxh2 = window.open("about:blank","window_mxh")

// 向对话框传递数组

window.showModalDialog("test2.htm",mxh1)

// 向对话框传递window对象

window.showModalDialog("test3.htm",mxh2)

test2.htm

====================

<script></script>

var a = window.dialogArguments

alert("您传递的参数为:" + a)

test3.htm

====================

<script></script>

var a = window.dialogArguments

alert("您传递的参数为window对象,名称:" + a.name)

可以通过window.returnValue向打开对话框的窗口返回信息,当然也可以是对象。例如:

test4.htm

===================

<script></script>

var a = window.showModalDialog("test5.htm")

for(i=0;i

test5.htm

===================

<script></script>

function sendTo()

{

var a=new Array("a","b")

window.returnValue = a

window.close()

}

常见问题:

1,如何在模态对话框中进行提交而不新开窗口?

如果你 的
浏览器是IE5.5+,可以在对话框中使用带name属性的iframe,提交时可以制定target为该iframe的name。对于IE4+,你可以用高度为0的frame来作:例子,

test6.htm

===================

<script></script>

window.showModalDialog("test7.htm")

test7.htm

===================

if(window.location.search) alert(window.location.search)

<frameset rows="0,*"> <p><frame src="about:blank"></p> <p><frame src="test8.htm"></p> <p></p> </frameset>

test8.htm

===================

<script></script>

if(window.location.search) alert(window.location.search)

2,可以通过http://servername/virtualdirname/test.htm?name=mxh方式直接向对话框传递参数吗?

答案是不能。但在frame里是可以的。

本文首发地址:http://www.watch-life.net/life-thinking/html-base-showmodaldialog-notes.html

-------------------------------------------

更多文章见:守望轩[http://www.watch-life.net]

分享到:
评论

相关推荐

    showModalDialog和showModelessDialog使用心得

    ### showModalDialog和showModelessDialog使用心得:深入解析与实践 在Web开发中,`showModalDialog` 和 `showModelessDialog` 是两种用于创建弹出窗口的方法,它们各自具有独特的特性和应用场景。本文将详细解析这...

    showModalDialog和showModelessDialog的用法

    **showModalDialog** 和 **showModelessDialog** 是JavaScript中用于创建弹出对话框的方法,它们在使用场景和交互行为上有所不同。 1. **showModalDialog** - **特点**: 弹出的对话框具有模态特性,即一旦对话框被...

    showModalDialog 和 showModelessDialog

    当使用`showModalDialog`或`showModelessDialog`打开的链接时,可以通过在被打开的网页中添加`&lt;base target="_self"&gt;`标签,确保内容在同一窗口内加载,而不是新开一个窗口。 3. **刷新对话框内容**: 在`...

    showModalDialog()、showModelessDialog()方法的使用.

    在Web开发中,有时我们需要创建弹出式窗口与用户交互,这时就涉及到`showModalDialog()`和`showModelessDialog()`这两个JavaScript方法。这两个方法都是IE浏览器提供的,用于创建具有不同特性的对话框。 1. `...

    showModalDialog技术文章

    6. **优点和缺点**:分析`showModalDialog`相比于其他弹窗技术(如`alert`、`prompt`、`confirm`或`modal`对话框)的优点,如提供更丰富的交互,以及它的缺点,如可能导致页面阻塞和用户体验下降。 7. **替代方案**...

    WEB页子窗口(showModalDialog和showModelessDialog)使用说明

    在网页开发中,有时我们需要创建弹出式窗口与用户交互,这时就用到了`showModalDialog`和`showModelessDialog`这两个JavaScript方法。这两个方法主要用于在Web页面中打开子窗口,提供了一种非标准的窗口打开方式,...

    showModalDialog和open方法demo实例

    在JavaScript中,`showModalDialog`和`window.open`是两个用于打开新窗口或对话框的方法,它们在网页交互和用户界面设计中扮演着重要角色。这篇文章将详细讲解这两个方法的功能、用法以及它们的区别。 首先,我们来...

    避免 showModalDialog 弹出新窗体的原因分析

    showModalDialog:被打开后就会始终保持输入焦点。除非对话框被关闭,否则用户无法切换到主窗 口。类似alert的运行效果。 showModelessDialog:被打开后,用户可以随机切换输入焦点。对主窗口没有任何影响(最多是被...

    showmodaldialog的用法收集

    要防止`showModalDialog`或`showModelessDialog`弹出新窗口,可以在被打开的HTML文档中添加`&lt;base target="_self"&gt;`标签。这将确保所有链接都在当前窗口中打开,而不是新窗口。 ### 三、刷新`showModalDialog`和`...

    showModalDialog及dialogArguments使用

    在Web开发中,`showModalDialog` 和 `showModelessDialog` 是Internet Explorer浏览器特有的方法,用于打开模态或非模态对话框。这两个函数允许开发者创建自定义的弹出窗口,为用户提供更丰富的交互体验。下面将详细...

    showModalDialog:window.showModalDialog polyfill 使用元素

    ShowModalDialog 填充这是一个window.showModalDialog() shim,使用模态 HTML5 &lt;dialog&gt;元素和 ECMAScript 2015 Generators 或 ECMAScript 2017 Async/Await。 它在最新的 Google Chrome 和最新的 Mozilla Firefox ...

    window.showModalDialog模式对话框和 window.open的区别

    `window.showModalDialog` 和 `window.open` 都是JavaScript提供的两种打开新窗口的方法,但它们在功能和使用场景上有着显著的区别。 首先,我们来详细探讨`window.showModalDialog`。`showModalDialog`方法用于...

    ShowModalDialog父窗体向子窗体传值

    总的来说,`showModalDialog`和`showModelessDialog`是JavaScript中用于创建弹出式对话框的两种方式,它们提供了在父窗口与子窗口之间传递数据的机制,同时也能够定制对话框的外观和行为。在实际应用中,根据需求...

    showModalDialog

    3. 可访问性:对于屏幕阅读器和其他辅助技术,`showModalDialog`可能不是最佳选择。 在HTML中,`showModalDialog`常与其他元素结合使用,如`&lt;button&gt;`或`&lt;a&gt;`标签,触发对话框的打开。同时,对话框本身可以包含各种...

    showModelessDialog使用详解

    ### showModelessDialog...总结而言,`showModelessDialog()`为开发者提供了创建非模态对话框的能力,从而增强了应用程序的交互性和用户体验。然而,由于其兼容性限制,开发者在实际应用中需要谨慎选择合适的技术方案。

    showModalDialog参数传递和获

    `showModalDialog`方法的参数传递和获取是它功能的关键部分,下面我们将详细讨论。 ### 1. `showModalDialog`方法的基本语法 `showModalDialog`接受三个主要参数: - **URL**:指定对话框加载的页面URL,可以是...

    showModalDialog跨域解决例子

    4. **Window.postMessage()**:当`showModalDialog`打开的新窗口和父窗口在同一浏览器实例中时,可以利用`postMessage` API进行跨窗口通信。通过向新窗口发送消息,然后在新窗口中监听这些消息,实现跨域数据交换。 ...

Global site tag (gtag.js) - Google Analytics