Comparison between the onchange event in JavaScript and the change () method in jquery

Source: Internet
Author: User

Change the mindset to a keyboard button event as follows:
<Asp: textbox id = "txtname" runat = "server" onkeyup = "fnamechange ();"> </ASP: textbox>
One problem here is that you cannot trigger this event by copying and pasting the content. Below are some of the relevant Code : Copy 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:Copy codeThe 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.
<Script language = "JavaScript" type = "text/JavaScript">
Window. onglad = function (){
Document. getelementbyid ('tx1 '). attachevent ("onchange", txchange)
}
Function txchange (){
Alert ("");
}
</SCRIPT>
*/

If you have the onchange () method, please let me know. Thank you.

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.