jquery得到iframe src属性值的方法
更新时间:2014年09月25日 17:42:59 投稿:whsnow
这篇文章主要介绍了jquery得到iframe src属性值的方法,很简单,很实用,需要的朋友可以参考下
取得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="http://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="http://www.baidu.com"></iframe> </body> </html>
您可能感兴趣的文章:
相关文章
jQuery插件passwordStrength密码强度指标详解
这篇文章主要为大家详细介绍了jQuery插件passwordStrength密码强度指标实现代码,感兴趣的小伙伴们可以参考一下2016-06-06HTML5+jQuery插件Quicksand实现超酷的星际争霸2兵种分类展示效果(附demo源码下载)
这篇文章主要介绍了HTML5+jQuery插件Quicksand实现超酷的星际争霸2兵种分类展示效果,详细分析了Quicksand插件的使用及图片浮动显示的实现技巧,并附带demo源码供读者下载参考,需要的朋友可以参考下2016-05-05jQuery EasyUI API 中文文档 - ProgressBar 进度条
jQuery EasyUI API 中文文档 - ProgressBar 进度条,使用jQuery EasyUI的朋友可以参考下。2011-09-09
最新评论