首頁 >web前端 >js教程 >JavaScript取得表單target屬性的方法_javascript技巧

JavaScript取得表單target屬性的方法_javascript技巧

WBOY
WBOY原創
2016-05-16 16:06:181893瀏覽

本文實例講述了JavaScript獲得表單target屬性的方法。分享給大家供大家參考。具體實作方法如下:

<!DOCTYPE html>
<html>
<body>
<form id="frm1" action="form_action.asp" target="_blank">
First name: <input type="text" name="fname" value="Donald"><br>
Last name: <input type="text" name="lname" value="Duck"><br>
<input type="submit" value="Submit">
</form>
<p>The value of the target attribute is:
<script>
document.write(document.getElementById("frm1").target);
</script>
</p>
</body>
</html>

上述程式碼輸出結果如下:

The value of the target attribute is: _blank

希望本文所述對大家的javascript程式設計有所幫助。

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn