If it is uploaded to a new page, which language is your website developed to directly obtain the data using get or post, and then output the data to this layer using js to transfer data from one page to another page layer?
If it is uploaded to a new page, your website can be directly obtained using get or post based on the language development, and then output to this layer.
Passing parameters through url
If the link on the HTML page is sent to the new page, the link will be location.hrefw.'a.html? Id1_100'then the js on the a.html page
Script document. getElementById ("s"). innerHTML = window. location. split ('? ') [1]; script
If you want to implement AJAX to Transfer Parameters on page a to page B and display the result of parameters executed on page B at the layer of page a, you can use AJAX.
This is written too much. It's for JQUERY.
$ ("# A"). load ("B .html? Id = 100 "); // or $. get (" B .html? Id = 100 ", function (data) {$ (" # a ").html (data );})
There is also the POST method, which will not be listed here