Use JS through the URL to pass the data from one page to another page _javascript tips

Source: Internet
Author: User

Use JS to upload data from one page to another layer?

If you are uploading to a new page, what language development is your site based on, get or post, and then output to this layer

Passing a URL through a parameter

If it is an HTML page, JS to the new page will window.location.href= ' a.html?id=100 '; then a.html the JS on the page <div id= "s" ></div>

<script>
document.getElementById ("s"). Innerhtml=window.location.split ('? ') [1];
</script>

If you want to achieve Ajax in the a page pass parameters to the B page and on the layer a page to display the results of the B page execution parameters, then use Ajax

This is too much to write for you, jquery.

<div id= "A" ></div>
$ ("#a"). Load ("b.html?id=100");
or
$.get ("b.html?id=100", function (data) {
$ ("#a"). HTML (data);
})

There's a post method, and it's not listed here.

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.