This time I will bring you a detailed explanation of the use of JQuery's jqURL plug-in. What are the precautions for using JQuery's jqURL plug-in? The following is a practical case, let's take a look.
Sometimes we need to process the parameters passed by the page address on the client. The jqURL plug-in can obtain page parameters and parameter values, obtain the page URL address, and open a new window of a specified size. Usage introduction: Assume the current url address is: "http://www.php.cn"Method 1: Open a new page window
$.jqURL.loc("http://www.php.cn",{w:200,h:200,wintype:"_blank"});
Method 2: Get the current page URL address
$.jqURL.url();
Method 3: Get the parameters passed by the URL address of the current page
$.jqURL.qs();
Method 4: Get The address of the page after removing the parameters
$.jqURL.strip();
Method 5: Get the value of parameter a passed by the page URL
$.jqURL.get("a");
How to deal with page anchor failure in iframe
Detailed explanation of the steps to obtain the document object in iframe
How iframe triggers parent window element events
The above is the detailed content of Detailed explanation of the use of JQuery's jqURL plug-in. For more information, please follow other related articles on the PHP Chinese website!