//Return the value to the parent form function returnParent(value ) {//Get the child form return value var parent = window.dialogArguments; //Get the parent page //parent.location.reload(); //Refresh the parent page if (parent ! = null && parent != "undefined") { window.returnValue = value; //Return value window.close(); //Close the subpage } //window.opener .document.getElementById("ActivityPic");//Directly operate the parent form element //$(selector, window.parent.document); used for frame page //$(selector, window. opener.document); This is suitable for pages that are opened separately return; } //Open the modal subform and get the return value for operation function showModalOnly(me, url) { //Pop up Form, radio selection var hidden = document.getElementById(me); //Get the hidden control if (hidden != null && hidden.value != null && hidden.value.length > 0) { alert("This is a radio selection, please delete the existing options first and try to select again."); return; } var reValue = window.showModalDialog(url, window , "dialogHeight:500px; dialogWidth:987px; status:off; scroll:auto"); if (reValue == null || reValue == "undefined" || reValue == "") { return ; //If the return value is empty, return } var index = reValue.split("^"); //The position of the separator ^ if (index[0] == null | | index[0] == "undefined" || index[0].length < 1) { return; } var hid = index[0].split('&'); //Assign value to hidden control var view = index[1].split('&'); //Display value var content = ""; //Content that needs to be added to check if (hid != null && hid.length == 2) { var i = 0; if (hid[i] != "undefined" && hid[i] != "" && view[i 1 ] != "undefined" && view[i 1] != "") { content = '
' view[i 1] '
table>'; hidden.value = hid[i]; //Assign value to hidden control var c = document.getElementById("check" me); c.innerHTML = content; return; } } alert("Please select only one piece of data. "); return; } function openUploadWindow(url, width, height,left,top) { if(width==null) width=987; if (height = = null) height = 500; if (left == null) left = 200; if (top == null) top = 200; //window.open(url, 'newwindow', 'height=' height ',width=' width ',top=200,left=200,toolbar=no,menubar=no,scrollbars=no, resizable=no,location=no, status=no'); window.showModalDialog(url, window, "dialogHeight:" height "px; dialogWidth:" width "px;status:off; scroll:auto;dialogLeft:" left "px;dialogTop:" top "px"); }
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Detailed explanation of JavaScript string replacement method and FAQ
This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages.
Replace string inside JavaScript code
The most direct way is to use the replace() method:
str = str.replace("find","replace");
This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g:
str = str.replace(/fi
Leverage jQuery for Effortless Web Page Layouts: 8 Essential Plugins
jQuery simplifies web page layout significantly. This article highlights eight powerful jQuery plugins that streamline the process, particularly useful for manual website creation
So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content.
The term AJAX, originally coined by Jesse J
This post compiles helpful cheat sheets, reference guides, quick recipes, and code snippets for Android, Blackberry, and iPhone app development. No developer should be without them!
Touch Gesture Reference Guide (PDF)
A valuable resource for desig
jQuery is a great JavaScript framework. However, as with any library, sometimes it’s necessary to get under the hood to discover what’s going on. Perhaps it’s because you’re tracing a bug or are just curious about how jQuery achieves a particular UI
10 fun jQuery game plugins to make your website more attractive and enhance user stickiness! While Flash is still the best software for developing casual web games, jQuery can also create surprising effects, and while not comparable to pure action Flash games, in some cases you can also have unexpected fun in your browser.
jQuery tic toe game
The "Hello world" of game programming now has a jQuery version. Source code
jQuery Crazy Word Composition Game
This is a fill-in-the-blank game, and it can produce some weird results due to not knowing the context of the word. Source code
jQuery mine sweeping game
This tutorial demonstrates how to create a captivating parallax background effect using jQuery. We'll build a header banner with layered images that create a stunning visual depth. The updated plugin works with jQuery 1.6.4 and later.
Download the