Solution for showModalDialog to return Null in Google Chrome

Source: Internet
Author: User

The return value of showModalDialog can be obtained in IE and Firefox, but Null is returned in Google Chrome. The solution is described below.

Parent page:
Copy codeThe Code is as follows:
Function openwindows (){
Var obj = new Object ();

// Open the modal subform and obtain the return value
Var retval = window. showModalDialog ("ordervideo. jsp? RderIds = "+" 0030, ", obj," dialogWidth = 500px; dialogHeight = 500px ");

// For chrome
If (retval = undefined ){
Retval = window. returnValue;
}
Alert (retval );
}

Subpage:
Copy codeThe Code is as follows:
Function onload (){

// For chrome
If (window. opener! = Undefined) {// The window. opener value is not empty in Google's browser. It is undefined in IE/Firefox, so that it can be determined whether it is Google's browser.
Window. opener. returnValue = flag; // window used to assign a value to the return value in Google's browser. opener. close (); // you must close it once. Otherwise, run the following window. close () cannot close the pop-up window, because the pop-up window in Google browser is a new window
}

Else {
Window. returnValue = flag; // This assignment method is compatible with IE/Firefox, but does not support Google browsers.
}
Window. close ();

}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.