欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jquery得到iframe src属性值的方法教程

程序员文章站 2023-11-09 08:17:40
取得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>