jquery得到iframe src属性值的方法

时间:2022-11-09 15:28:46

取得iframe src属性的的值:

Html代码

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!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>