Kill lui lei dog---javascript no:16 default behavior 1

Source: Internet
Author: User

1. What is the default behavior?

In our HTML tags, many tags have their own default behavior.

Such as:

Submit button: It will automatically submit the form data to the processing page

A tag: It will automatically jump to the specified page

In some cases, we don't need this default behavior.

Such as:

When we do not fill out the form data, the system should not submit the form data directly to the processing page.

When we click the Delete link, if the user does not confirm that it should not be deleted directly.

2. Organization Default behavior

IE Model Browser

Window.event.returnValue = false;

Model Browser

Dom object. event = function (event) {

Event.preventdefault ();

}

Example code:

<!DOCTYPE HTML><HTML><Head><MetaCharSet= ' utf-8′><title></title><Scriptsrc= ' Public.js '></Script><Script>window.onload= function() {$ (' Btnok '). OnClick= function(){if($ (' username '). Value==") {alert (' user name cannot be null ');//IE Model//Window.event.returnValue = false;//ModelEvent.preventdefault (); }}}</Script></Head><Body><formAction= "4.html"Method= "POST">Name:<inputtype= "text"ID= "username"><HR/><inputtype= "Submit"ID= "Btnok"name= "Submit"value= ' Register '></form></Body></HTML>

Kill lui lei dog---javascript no:16 default behavior 1

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.