当前位置: 首页 > 文档资料 > jQuery 入门教程 >

contents()

优质
小牛编辑
133浏览
2023-12-01

描述 (Description)

如果元素是iframe,则contents( )方法查找匹配元素(包括文本节点)内的所有子节点,或内容文档。

语法 (Syntax)

以下是使用此方法的简单语法 -

<i>selector</i>.contents( )

参数 (Parameters)

以下是此方法使用的所有参数的说明 -

  • NA

例子 (Example)

考虑一下我们将在iframe中使用的html文件index.htm。

请尝试以下示例,该示例显示如何从父窗口访问iframe中的对象。 由于contents()方法,此操作已成为可能。

<html>
   <head>
      <title>The jQuery Example</title>
      <script type = "text/javascript" 
         src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js">
      </script>
      <script>
         $(document).ready(function(){
            var $content = $("iframe").contents();
            $content.find("body").append("I'm in an iframe!");
         });
      </script>
   </head>
   <body>
      <iframe src = "/jquery/index.htm" width = "300" height = "100"></iframe>
   </body>
</html>