當前位置:軟件學堂 > 資訊首頁 > 網(wǎng)絡(luò)編程 > DIV+CSS > 表單名稱name

表單名稱name

2012/11/21 09:28:42作者:佚名來源:網(wǎng)絡(luò)

移動端

【實例介紹】

表單名稱name

name標記用來為當前表單定義一個獨一無二的名稱,該名稱可以控制表單與后臺程序之間的關(guān)系。

【基本語法】

<form name="表單名稱">
···
</form>

【語法介紹】

表單名稱中不能包含特殊字符和空格。表單命名之后就可以用腳本語言(如JavaScript或VBScript)對它進行控制。

【實例代碼】

<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>處理動作</title> </head> <body> <table width="100%" cellspacing="0" cellpadding="0">   <tr>     <td><form action="mailto:weixiao@foxw.com" name="form1" >     </form></td>   </tr> </table> </body> </html>

【代碼分析】

代碼中加粗的代碼標記將表單的名稱設(shè)置為forml。

 【素材及源碼下載】

請點擊:表單名稱name 下載本實例相關(guān)素材及源碼

 

標簽: 表單  名稱name