Home Web Front-end JS Tutorial Javascript Gets HTML Static Page Parameter Pass Value Example_javascript Tips

Javascript Gets HTML Static Page Parameter Pass Value Example_javascript Tips

May 16, 2016 pm 05:25 PM
Parameter passing

Let me show you my code. Just embed these codes into the page file.

Example 1
Use regular expressions to get

Copy code The code is as follows:

var LocString = String(window.document.location.href);
function getQueryStr(str) {
var rs = new RegExp("(^|)" str "=([^&]*)(&|$)", "gi").exec(LocString), tmp;
if ( tmp = rs) {
return tmp[2];
}
// parameter cannot be found
return "";
}

Call method
Copy code The code is as follows:

document.getElementById("user").value = getQueryStr( "user");
document.getElementById("password").value = getQueryStr("password");
document.getElementById("sysno").value = getQueryStr("sysno");

Example 2
Use the split function to cut into arrays according to parameters
Copy code The code is as follows:

<script> <br>urlinfo=window.location.href; //Get the url of the current page <br>len=urlinfo.length;//Get the url Length<br>offset=urlinfo.indexOf("?");//Set the starting position of the parameter string<br>newsidinfo=urlinfo.substr(offset,len)//Remove the parameter string and you will get something like "id= 1" such a string<br>newsids=newsidinfo.split("=");//Split the obtained parameter string according to "="<br>newsid=newsids[1];//Get the parameter value<br>alert("The parameter value you want to pass is " newsid); <br></script>

But be sure to remember that this method is only useful for urls that contain parameters. If the other party uses If you use the POST method to pass parameters, the URL will not contain parameters, so this technique is only useful for the GET method or the URL with specified parameters

Look at a complete example below

aa.htm It is the parameter input and infiltration interface
bb.htm is the parameter receiving and processing interface
aa.htm
Copy code The code is as follows:


()
 {
 var input1 = document.getElementById("inputid");
 window.open("bb.htm?inputStr=" input1.value); // Pass in parameters
 }
 
 
  
 
 bb.htm:
 
 
 <script> <br> // Method to obtain parameters <br> var request = <br> { <br> QueryString : function(val) <br> { <br> var uri = window.location.search; <br> var re = new RegExp("" val "=([^&?]*)", "ig"); <br> return ((uri.match(re))?(uri.match(re)[0].substr(val.leng th 1 )):null); <br> } <br> } <br> </script>
 
 
 <script> <br> The method gets the parameters <br> var rt = request.QueryString("inputStr"); <br> alert(rt); <br> </script>




bb.htm



Copy code
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Best practices for optimizing Golang function parameter passing performance Best practices for optimizing Golang function parameter passing performance Apr 13, 2024 am 11:15 AM

In order to optimize Go function parameter passing performance, best practices include: using value types to avoid copying small value types; using pointers to pass large value types (structures); using value types to pass slices; and using interfaces to pass polymorphic types. In practice, when passing large JSON strings, passing the data parameter pointer can significantly improve deserialization performance.

Detailed explanation of C++ function parameters: Performance optimization of parameter passing in parallel programming Detailed explanation of C++ function parameters: Performance optimization of parameter passing in parallel programming Apr 27, 2024 pm 02:09 PM

In a multi-threaded environment, function parameter passing methods are different, and the performance difference is significant: passing by value: copying parameter values, safe, but large objects are expensive. Pass by reference: Passing by reference is efficient, but function modifications will affect the caller. Pass by constant reference: Pass by constant reference, safe, but restricts the function's operation on parameters. Pass by pointer: Passing pointers is flexible, but pointer management is complex, and dangling pointers or memory leaks may occur. In parallel summation, passing by reference is more efficient than passing by value, and passing by pointer is the most flexible, but management is complicated.

Research on parameter passing methods in Go language Research on parameter passing methods in Go language Apr 03, 2024 pm 02:48 PM

In the Go language, there are two main ways to pass function parameters: value passing: passing a copy of the variable will not affect the original variable in the calling code. Pointer passing: Passing the address of a variable allows the function to directly modify the original variable in the calling code.

golang function map passed as parameter golang function map passed as parameter Apr 22, 2024 am 11:42 AM

In Go, function maps can be passed as parameters of functions, providing code reuse and customization capabilities: Create a function map: use the map[string]interface{} type, with the function name as the key and the function itself as the value. Pass as parameter: Use the funcMap type in the function parameter list to accept a function map. Execute a function: Retrieve the function from the function map via the reflect package and call it with variable arguments. Practical case: Function mapping can be passed to the template engine to dynamically execute template functions at runtime.

C++ function pointer parameter passing mechanism C++ function pointer parameter passing mechanism Apr 19, 2024 pm 02:06 PM

The function pointer is used as a parameter passing mechanism in C++: the function pointer is passed as a constant pointer, a copy is created during the passing process, the received function formal parameter points to the copy, and the dereferenced copy can call the underlying function.

What is the parameter passing method for PHP functions? What is the parameter passing method for PHP functions? Apr 10, 2024 am 11:06 AM

There are two ways to pass parameters in PHP: call by value (the parameter is passed as a copy of the value, modification within the function does not affect the original variable) and passing by reference (the address of the parameter is passed, modification within the function will affect the original variable), when the original variable needs to be modified Use reference passing when calculating the shopping cart total price, which requires reference passing to calculate correctly.

How to pass parameters to PHP function? How to pass parameters to PHP function? Apr 10, 2024 pm 05:21 PM

PHP functions can pass values ​​through parameters, which are divided into pass by value and pass by reference: pass by value: modification of parameters within the function will not affect the original value; pass by reference: modification of parameters within the function will affect the original value. In addition, arrays can also be passed as parameters for operations such as calculating the sum of data.

The relationship between C++ function parameter passing methods and variable parameter functions The relationship between C++ function parameter passing methods and variable parameter functions Apr 13, 2024 am 08:30 AM

Function parameter passing methods include value passing, reference passing and pointer passing. Variable parameter functions can only pass in parameters through pointer passing, because the function needs to know the address of the variable parameter part. For example, the sum() function accepts an unknown number of arguments using... and then uses the va_arg() macro to get the value of the variable argument.

See all articles