How to listen for input script assignment

Source: Internet
Author: User

Today recorded I solve input value change monitoring, everyone must first think of onchange method. For real-time monitoring change with Onpropertychange, Oninput and other methods; However, onchange can not listen to the value of the script changes, for the onpropertychange can only implement IE monitoring is not compatible with all browser problems;

Thought for a long time, I found a good way to share with you one or two:

Suppose html:<input name= "temp" id = "Temp" value/>

JS assignment at the same time to do the following (focus before assignment, cancel focus after copying); JS code is as follows

      $ ("#temp"). focus ();
$ ("#temp"). Val ("assignment operation");
$ ("#temp"). blur ();

And then it's listening:

$ ("#temp"). Bind (' blur change ', function () {

Alert ("The value has changed and changed to:" +$ ("#temp"). Val ());

Event handling

})

How to listen for input script assignment

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.