jquery得到iframe src属性值的方法教程
程序员文章站
2022-06-13 10:37:13
取得iframe src属性的的值:
html代码
<...
取得iframe src属性的的值:
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="https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> <script type="text/javascript"> $(document).ready(function (){ var dk = $(window.parent.document).find("#iframe_id").attr("src"); alert(dk); }); </script> </head> <body> <iframe id="iframe_id" name="iframe_name" src="https://www.baidu.com"></iframe> </body> </html>