这里是我的代码:
<div id="biography_name1">
<iframe id="Array___Frame" src="some_value" height="600" frameborder="0" width="100%" scrolling="no" >
<html>
<head></head>
<body>
<iframe src="some_value">
<div class="my_value"> GET THIS VALUE </div>
</iframe>
</body>
</html>
</iframe>
</div>
这里我想使用jquery获取类my_value值。我该怎么办?
答案 0 :(得分:0)
如果有帮助,请不要忘记投票并接受答案! ;)
<iframe id='frameParent'>
<iframe id='frameChild'>
<div id="my_value">some text here</div>
</iframe>
</iframe>
<script>
var foo = $("#frameParent").contents().find("#frameChild").contents().find(".my_value").text();
//NOW YOUR VALUE IS STORED IN THE VARIABLE CALLED FOO
//change '#' to '.' in last find statement
</script>
现在它应该工作
答案 1 :(得分:0)
$(".my_value").text();
会这样做。