Comparison between the onchange event in javascript and the change () method in jQuery _ javascript skills

Source: Internet
Author: User
Originally, I wanted to add text content in the text box to change the event action. As a result, I found many javascript code in this area, which was unsatisfactory. Change the mindset to a keyboard button event as follows:

One problem here is that you cannot trigger this event by copying and pasting the content. The following are some related code:

The Code is as follows:


Function fNameChange (){
If ($ ('# txtName'). val (). length <6 ){
JQuery ("# checkSta" ).html ("the name is too short! ").Css (" color "," red ");
} Else {
Myajax ();
}
}


The following are some content for online search:

The Code is as follows:


// Onload () event
$ (Function () {// The event is indeed appended, but the execution time is incorrect.
$ ('# TxtName'). change (function () {fNameChange ();});
})
/* This is something someone said was implemented using js, and I found that it cannot be used.

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.