程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> 舊題重現:HTML Label標簽結合Input的應用

舊題重現:HTML Label標簽結合Input的應用

編輯:.NET實例教程

巧妙的應用Label,設置焦點

Examples of form inputs marked up with the <label> tag

Form element looks like Coded like:
<label for="txtFirstName">First Name:</label><br />
<input class="input" type="text" title="Enter your first name" maxlength="" size="" name="txtFirstName" id="txtFirstName" value="">

Age:


Age:<br />
<input class="input" type="radio" title="Choose from one of the options" name="radAge" id="radAge4_0" value="Under30"><label for="radAge4_0">&nbsp;Under 30</label><br>
<input class="input" type="radio" title="Choose from one of the options" name="radAge" id="radAge4_1" value="Over30"><label for="radAge4_1">&nbsp;Over 30</label><br>

What colours do you like:

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved