當(dāng)前位置:軟件學(xué)堂 > 資訊首頁 > 網(wǎng)絡(luò)編程 > DIV+CSS > 表單中的目標(biāo)顯示方式target

表單中的目標(biāo)顯示方式target

2012/11/21 15:10:17作者:佚名來源:網(wǎng)絡(luò)

移動端

【實(shí)例介紹】

表單中的目標(biāo)顯示方式target

target標(biāo)記用于設(shè)置目標(biāo)窗口的打開方式。

【基本語法】

<form target="目標(biāo)窗口的打開方式">
···
</form>

【語法介紹】

target標(biāo)記的屬性值如表所示

target標(biāo)記的屬性值
屬性          描述
_blank      將返回信息顯示在新打開的瀏覽器窗口中
_parent      將返回信息顯示在父級瀏覽器窗口中
 _self       將返回信息顯示在當(dāng)前瀏覽器窗口中
_top            將返回信息顯示在頂級瀏覽器窗口中

【實(shí)例代碼】

<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" method="post"

enctype="application/x-www-form-urlencoded"target="_blank" >     </form></td>   </tr> </table> </body> </html>

【代碼分析】

在代碼中,加粗的代碼標(biāo)記將表單的目標(biāo)窗口的打開方式設(shè)置為_blank,即將返回信息顯示在新打開的瀏覽器窗口中。

 【素材及源碼下載】

請點(diǎn)擊:目標(biāo)顯示方式target 下載本實(shí)例相關(guān)素材及源碼

 

標(biāo)簽: 表單  顯示方式