Javascript: src _ javascript tips-js tutorial

Source: Internet
Author: User
Javascript: Modify the SRC of the IMG label. The image under IE6 is modified normally, but it is not refreshed under IE7 and Firefox. The following is a solution. For details, refer to section 1. when you click a button, change the image in the image field.

The Code is as follows:



Invisible
Script
Function reflush ()
{
Document. getElementById (randimg). src = "/servlet/CreateValidateNum ";
}
Script


2. Description
"Servlet/CreateValidateNum" is a JAVA-written servlet. The servlet prints the image.

3. Problems
The image under IE6 is modified normally, but it is not refreshed under IE7 and Firefox.

4. Situation Analysis
If the new image is different from the old image address, the effect will be displayed. That is, the image changes.
But it is similar to the "Verification Code" function. The addresses of new and old images are the same.
In view of the above situation, it is suspected that the image address is the same, which causes the browser to automatically read the cache.

5. Solution
Change javascript to this:
Document. getElementById (randimg). src = "/servlet/CreateValidateNum? "+ Math. random ();
That is, each access address is different because there is a random number. Solve the problem

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.