我想添加一個圖像,做下面的代碼的等價物,但不是創建一個textnode我將如何創建一個圖像元素?如何將圖像添加到跨度子元素?
//create the DOM object
var newSpan = document.createElement('span');
// add the class to the 'span'
newSpan.setAttribute('class', 'ABC');
document.getElementById('text').appendChild(newSpan);
var selectedTextNode = document.createTextNode();
newSpan.appendChild(selectedTextNode);