HTML DOM Samp 对象
Samp 对象
Samp 对象代表 HTML <samp> 元素。
访问 Samp 对象
您可使用 getElementById() 来访问 <samp> 元素:
var x = document.getElementById("mySamp");
创建 Samp 对象
您可使用 document.createElement() 方法来创建 <samp> 元素:
var x = document.createElement("SAMP");
Samp 对象代表 HTML <samp> 元素。
您可使用 getElementById() 来访问 <samp> 元素:
var x = document.getElementById("mySamp");
您可使用 document.createElement() 方法来创建 <samp> 元素:
var x = document.createElement("SAMP");