欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

JavaScript獲取網(wǎng)頁表單action屬性的方法

 更新時(shí)間:2015年04月02日 11:38:49   作者:瘋狂一夏  
這篇文章主要介紹了JavaScript獲取網(wǎng)頁表單action屬性的方法,涉及javascript操作表單屬性的技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下

本文實(shí)例講述了JavaScript獲取網(wǎng)頁表單action屬性的方法。分享給大家供大家參考。具體如下:

JavaScript獲取網(wǎng)頁表單的action屬性,即要提交到的url地址,有時(shí)候需要提交到當(dāng)前頁面,則可能會(huì)設(shè)置action為空

<!DOCTYPE html>
<html>
<body>
<form id="frm1" action="jb51.php">
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 action attribute is:
<script>
document.write(document.getElementById("frm1").action);
</script>
</p>
</body>
</html>

運(yùn)行結(jié)果如下:

The value of the action attribute is:jb51.php

 

希望本文所述對(duì)大家的javascript程序設(shè)計(jì)有所幫助。

相關(guān)文章

最新評(píng)論