📌  相关文章
📜  如何指定对象所属的一种或多种形式?

📅  最后修改于: 2021-11-08 05:23:33             🧑  作者: Mango

这篇文章的目的是指定对象所属的一种或多种形式。简单来说,我们只需要创建一个表单,然后在创建一个对象之后,我们只需要指定它属于哪个表单。 Form元素用于为用户输入创建 HTML 表单。 Object元素用于定义外部资源的容器。

表单属性 用于指定对象属于哪种形式。该属性被对象元素接受。

方法:

  • 首先,我们将创建一个带有表单元素的 HTML 页面。
  • 创建一个对象并指定它属于哪个表单。

示例 1:

HTML


  

     Form attribute 
    

  

  
    

GeeksForGeeks

       
        First name:         

                
    

                  


gfg.html


  
    Form attribute
    
  
  
    

GeeksForGeeks

       
      First name:       

           
    

            


new.html


    
        
            Form attribute
        
        
    
  
    
        

         It is the compter science portal for geeks.         

    


输出:在这个例子中,我们单独创建了对象,但它也是表单的一部分。

示例 2:

gfg.html



  
    Form attribute
    
  
  
    

GeeksForGeeks

       
      First name:       

           
    

            

新的.html



    
        
            Form attribute
        
        
    
  
    
        

         It is the compter science portal for geeks.         

    

输出: