我需要知道getSelection选择的项目类型:
Sel:=ContentWindow.GetSelection;
Range:=Sel.GetRangeAt(0); // le premier élément selectioné
sel.RemoveAllRanges();
range.deleteContents();
// obtenir l'alocation de la sélection courante
Container:=Range.StartContainer;
> 如何知道所选对象是图像或表格,还是只是文本链接。 因为我需要提取每个所选对象的所有属性。
答案 0 :(得分:0)
获得所需的项目后,即可使用localName属性。
var temp = document.getElementById("someid");
console.log(temp.localName);
如果id =“someid”的元素是div,那么控制台中会有“div”。