Dynamic addition of js events implementation code _ javascript skills

Source: Internet
Author: User
Dynamically add js events, mainly because events at specific locations are not required. This method is convenient and scalable. // Form object
Function GetObject (Name)
{
Var inputlist = document. all. tags ('input ');
Var I = 0;
For (I = 0; I {
Var input = inputlist [I];
If (input. id. indexOf (Name )! =-1)
{
Return input;
}
}
Return null;
}
// Set object events
Function setEvent (Object, EventName, EventFunction)
{
If (Object = null)
Return;
If (window. addEventListener)
{
// Event code of other browsers: Mozilla, Netscape, and Firefox
// The Order of the added events is the execution sequence. // note that you can use addEventListener to add events with on instead of on.
Object. addEventListener (EventName. replace ('on', ''), EventFunction, false );
}
Else
{
// Add the add method to the original IE Event code
Object. attachEvent (EventName, EventFunction );
}
}
// Function with no focus
Function blur ()
{
Var size = lSize. value * 0.3;
PSize. value = ForDight (size, 0 );
}
// Rounding the Function
Function ForDight (Dight, How)
{
Var Dight = Math. round (Dight * Math. pow (10, How)/Math. pow (10, How );
Return Dight;
}
// Execute
Var lSize = GetObject ('stnumbertextbox1 ');
Var pSize = GetObject ('stnumbertextbox2 ');
SetEvent (lSize, 'onblur', blur );
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.