Count some ie problems (when to update)

Source: Internet
Author: User

1.doc ument. createelement

Problem description: When Using ASP. NET, we usually need to register a script, which is usually sent to the client in this form;

<SCRIPT type = "text/JavaScript"> // <! [CDATA [layer. Alert ('Log On first! ',-1,' hint ', function () {location. href ='/login. aspx ';}); //]> </SCRIPT>

However, this script is correct in IE8 and later versions. However, in IE6 and 7, the system prompts "Internet Explorer cannot open the Internet site http: // xxxx/terminated operation ", I checked it online. It turns out that when the page is not complete, if createelement exists in the executed JS, it will cause such a problem. I wrote a jquery plug-in, jquery. layer, which may have createelement operations, so this problem occurs;

Solution: place the script in window. onload or jquery (document). Ready, for example:

<SCRIPT type = "text/JavaScript"> // <! [CDATA [jquery (document). Ready (function () {layer. Alert ('Please log on first! ',-1,' hint ', function () {location. href ='/login. aspx ';}); //]> </SCRIPT>

Or put the script at the bottom of the page? I have not tried this. If you are interested, try it.

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.