📜  如何在 JavaScript 中从超链接定位特定框架?

📅  最后修改于: 2022-05-13 01:56:27.479000             🧑  作者: Mango

如何在 JavaScript 中从超链接定位特定框架?

  • 框架元素用于将单个浏览器窗口分解为多个独立的浏览上下文。
  • 框架已被弃用,不应被现代网站(如 HTML 5 类型)使用。
  • 但是,仍然可以通过 iframe、对象、嵌入等标签将一个文档放入另一个文档中。

主要遵循两种方法:

  1. 不使用 JavaScript 的目标框架
    // Target attribute has iframe name as its value
    Link
      
    //Name attribute has name of the iframe
    
    
  2. 使用 JavaScript 的目标框架:
    //General syntax
    document.getElementById("frame-id").src = "url";
      
    //If object tag used
    x = document.getElementById("frame-id");
    x.data = "";
    //If iframe tag used
    x = document.getElementById("frame-id");
    x.src = "";
    //If embed tag used
    x = document.embeds.src = "";
    document.getElementById("frame-id").src = x;
    

示例:演示如何在 JavaScript 中通过超链接定位特定框架。



  

    
  
    
  

  

    

How can a particular frame be targeted,        from a hyperlink, in JavaScript?

                     iframe 01                    iframe 02                  iframe 03          iframe 04          iframe 05          iframe 06        
                                                                                        

Frame 05

             
  

输出: