Presumably everyone has used the form on the page, if you are not satisfied with the monotonous form control unit, you may wish to look at the following tips:
1, form text input Mobile selection: In the text input column, if added to the prompts, visitors will often use the mouse to select the Delete, and then enter useful information. In fact, just add onmouseover= "This.focus ()" onfocus= "This.select ()" Code to <textarea>, everything will be much simpler, such as:
<textarea name=textarea wrap=virtual rows=2 cols=22 onmouseover= "This.focus ()" onfocus= "This.select ()" >Input 中文版.. </textarea>
[Ctrl + A All SELECT Note: If the need to introduce external JS need to refresh to perform]
Similarly, you can add code to <input>.
2, Form input Unit Click Delete: This column is similar to the function, just use the mouse slightly changes, you need to click rather than as long as the mouse cover. Such as:
<input type=text name= "Address" size=19 value= "Enter,e-mail" "onfocus=" ">
[Ctrl + A All SELECT Note: If the need to introduce external JS need to refresh to perform]
Click the input unit, the prompt information will be deleted, is not very convenient.