码迷,mamicode.com
首页 > 其他好文 > 详细

Form表单提交用户数据并在iframe中显示

时间:2015-05-08 18:21:33      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:iframe   用户   action   

<!DOCTYPE html>

<html>

<body>

<iframe name="frameLayout" frameborder="0" width="200px" height="200px">

</iframe>

<form id="frm1" action="demo-form.php" target="frameLayout">

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>


Form表单提交用户数据并在iframe中显示

标签:iframe   用户   action   

原文地址:http://9966064.blog.51cto.com/9956064/1649675

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!