Il miglior tutorial oggetti HTML DOM Legenda Nel 2024, in questo tutorial puoi imparare oggetti Legenda,Proprietà Leggenda degli oggetti,proprietà ed eventi standard,articoli correlati,

oggetti HTML DOM Legenda

oggetti Legenda

oggetto Leggenda rappresenta un <legend> elemento HTML.

Accesso agli oggetti Leggenda

È possibile utilizzare getElementById () per accedere al <legend> elemento:

var x = document.getElementById("myLegend"); 尝试一下

Creare oggetti Legenda

È possibile utilizzare il metodo document.createElement () per creare un <legend> elemento:

var x = document.createElement("LEGEND"); 尝试一下

Proprietà Leggenda degli oggetti

属性 描述
form 返回一个包含 legend 的表单的引用。

proprietà ed eventi standard

oggetto Leggenda supporta anche lo standard attributi ed eventi .


articoli correlati

HTML Reference Manual: HTML <fieldset> tag

HTML Reference Manual: HTML <legend> tag

oggetti HTML DOM Legenda
10/30