0

这是我的代码:

<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 值。我能怎么做?

4

2 回答 2

0
$(".my_value").text();

会这样做。

于 2012-04-09T09:01:28.640 回答
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>

现在它应该可以工作了

于 2012-04-09T08:53:07.843 回答