★JS's Calling Tricks ★

Source: Internet
Author: User

★★★★★★★★★★★★★★★js's Calling technique ★★★★★★★★★★★★★★★★★★★
How to add JS to a text box
French one: in the HTML view to find the relevant elements, directly embedded related events and JS code.
For example:
Design time:
User name: <asp:textbox id= "TextBox1" onfocus= "Dofocus (This)" runat= "Server" forecolor= "#999999" > (required) </ Asp:textbox>

—————— here onfocus no hint, you can write directly!!!!
Run up:
User name: <input name= "TextBox1" type= "text" value= "(required)" id= "TextBox1" onfocus= "Dofocus (This)" style= "color:# 999999; "/>


method Two : in the Page_Load method of the Aspx.cs file, use the attributes attribute to add JS
For example:
C # code:
protected void Page_Load (object sender, EventArgs e)
{
TEXTBOX2.ATTRIBUTES.ADD ("onfocus", "Dofocus (This)"); ———— property Names and property values
}
Run up:
Password: <input name= "TextBox2" type= "text" value= "(required)" id= "TextBox2" onfocus= "Dofocus (This)" style= "color: #999999;"/ >


*******************************************************************************************

★JS's Calling Tricks ★

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.