jquery获得同源iframe内body下标签的值的方法_Javascript教程-查字典教程网
jquery获得同源iframe内body下标签的值的方法
jquery获得同源iframe内body下标签的值的方法
发布时间:2016-12-30 来源:查字典编辑
摘要:test.htmlHtml代码jquery$(document).ready(function(){$("#show").click(fun...

test.html

Html代码

<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>jquery</title> <style type="text/css"> </style> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> <script type="text/javascript"> $(document).ready(function (){ $("#show").click(function (){ var iframeObj = $(window.frames["iframe_name"].document); alert(iframeObj.find("#un").val()); }); }); </script> </head> <body> <input type="button" id="show" value="show" /> <iframe id="iframe_id" name="iframe_name" src="http://localhost/test/login.html"></iframe> </body> </html>

login.html

Html代码

<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>登录页面</title> </head> <body> <form method="POST" action="#"> 用户名:<input id="un" type="text" name="username" value="123d" /> 密 码:<input type="text" name="password"/> <input type="submit" value="提交"> </form> </body> </html>

注意:必须同源

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新Javascript教程学习
    热门Javascript教程学习
    编程开发子分类