【问题标题】:How to read iframe with jquery or asp.net如何使用 jquery 或 asp.net 读取 iframe
【发布时间】:2014-12-25 15:00:32
【问题描述】:

我无法阅读该网站的 iframe //这里需要先输入 http://kktc.hititbet.com/SportFixtures.html?sportTypeId=1

asp.net 或 jquery 如何读取这个 iframe ?

<div>
    <iframe frameborder="0" name="cbox1419518838172" src="http://kktc.hititbet.com/SportFixturesDetLoad.html?home=Avustralya&amp;away=Kuveyt&amp;id=1502708" class="cboxIframe"></iframe>

</div>

【问题讨论】:

    标签: jquery asp.net iframe


    【解决方案1】:

    如果你想使用 jquery 读取和更改 iframe,你可以使用 jquery 的 .content() 方法。

    查看示例;

    1- 将 id 添加到 iframe

    <iframe frameborder="0" id="frameDemo" name="cbox1419518838172"   src="http://kktc.hititbet.com/SportFixturesDetLoad.html?home=Avustralya&amp;away=Kuveyt&amp;id=1502708"     class="cboxIframe"></iframe>
    

    2-脚本端

    <script>
     $( "#frameDemo" ).contents().find( "a" ).css( "background-color", "#BADA55" );
    </script>
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2014-01-29
      • 2021-03-14
      • 2014-07-17
      • 2016-11-22
      • 2016-08-01
      • 1970-01-01
      • 1970-01-01
      • 2020-11-27
      相关资源
      最近更新 更多