Ajax partial refreshing of jsp content under a div

Source: Internet
Author: User

Use AJAX to refresh the jsp content in a DIV

Copy codeThe Code is as follows:
<Script type = "text/javascript">
Var xmlhttp;
Function startrefresh (){
Xmlhttp = new XMLHttpRequest ();
Xmlhttp. open ("POST," ss. jsp ", true );
Xmlhttp. setRequestHeader ("Content-type", "application/x-www-form-urlencoded ");
// Xmlhttp. send ("name = wk"); -- added when parameters need to be transmitted
Xmlhttp. onreadystatechange = function (){
If (xmlhttp. readyState = 4)
If (xmlhttp. status = 200)
Document. getElementById ("mydvi"). innerHTML = xmlhttp. responseText;
}
}
</Script>

If you want this div to be automatically refreshed, you can use setInterval ('startrefresh () ', 5000) to automatically execute the startrefresh method every five seconds, another method is setTimeout ('startrefresh () ', 5000), but this method will only be executed once.

Related Article

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.