Uses of Class
org.w3c.dom.DOMException
-
Packages that use DOMException 软件包 描述 javax.imageio.metadata 处理读写元数据的Java Image I / O API的一个包。org.w3c.dom 提供文档对象模型(DOM)的接口。org.w3c.dom.css 提供DOM Level 2 Style Specification的界面。org.w3c.dom.events 提供DOM Level 2事件的接口。org.w3c.dom.html 提供DOM Level 2 HTML规范的接口。org.w3c.dom.ls 提供DOM Level 3加载和保存的界面。org.w3c.dom.ranges 提供DOM Level 2范围的界面。org.w3c.dom.stylesheets 提供DOM Level 2 Style Specification的界面。org.w3c.dom.traversal 提供DOM Level 2遍历的界面。org.w3c.dom.xpath 提供DOM Level 3 XPath规范的接口。 -
-
Uses of DOMException in javax.imageio.metadata
Methods in javax.imageio.metadata that throw DOMException Modifier and Type 方法 描述 short
IIOMetadataNode. compareDocumentPosition(Node other)
这个DOM Level 3方法不支持IIOMetadataNode
,并将抛出一个DOMException
。String
IIOMetadataNode. getBaseURI()
IIOMetadataNode
不支持此DOM 3级方法,并将抛出一个DOMException
。Object
IIOMetadataNode. getFeature(String feature, String version)
这个DOM Level 3方法不支持IIOMetadataNode
,并将抛出一个DOMException
。String
IIOMetadataNode. getNamespaceURI()
返回null
,因为不支持命名空间。TypeInfo
IIOMetadataNode. getSchemaTypeInfo()
IIOMetadataNode
不支持此DOM 3级方法,并将抛出一个DOMException
。String
IIOMetadataNode. getTextContent()
IIOMetadataNode
不支持此DOM 3级方法,并将抛出一个DOMException
。Object
IIOMetadataNode. getUserData(String key)
这个DOM Level 3方法不支持IIOMetadataNode
,并将抛出一个DOMException
。boolean
IIOMetadataNode. isDefaultNamespace(String namespaceURI)
IIOMetadataNode
不支持此DOM 3级方法,并将抛出一个DOMException
。boolean
IIOMetadataNode. isEqualNode(Node node)
这个DOM Level 3方法不支持IIOMetadataNode
,并将抛出一个DOMException
。boolean
IIOMetadataNode. isSameNode(Node node)
这个DOM Level 3方法不支持IIOMetadataNode
,并将抛出一个DOMException
。String
IIOMetadataNode. lookupNamespaceURI(String prefix)
IIOMetadataNode
不支持此DOM 3级方法,并将抛出一个DOMException
。String
IIOMetadataNode. lookupPrefix(String namespaceURI)
这个DOM Level 3方法不支持IIOMetadataNode
,并将抛出一个DOMException
。Attr
IIOMetadataNode. setAttributeNode(Attr newAttr)
void
IIOMetadataNode. setIdAttribute(String name, boolean isId)
这个DOM Level 3方法不支持IIOMetadataNode
,并将抛出一个DOMException
。void
IIOMetadataNode. setIdAttributeNode(Attr idAttr, boolean isId)
这个DOM Level 3方法不支持IIOMetadataNode
,并将抛出一个DOMException
。void
IIOMetadataNode. setIdAttributeNS(String namespaceURI, String localName, boolean isId)
这个DOM Level 3方法不支持IIOMetadataNode
,并将抛出一个DOMException
。void
IIOMetadataNode. setTextContent(String textContent)
这个DOM Level 3方法不支持IIOMetadataNode
,并将抛出一个DOMException
。Object
IIOMetadataNode. setUserData(String key, Object data, UserDataHandler handler)
IIOMetadataNode
不支持此DOM 3级方法,并将抛出一个DOMException
。 -
Uses of DOMException in org.w3c.dom
Methods in org.w3c.dom that throw DOMException Modifier and Type 方法 描述 Node
Document. adoptNode(Node source)
尝试从另一个文档中采用节点到本文档。Node
Node. appendChild(Node newChild)
将节点newChild
添加到此节点的子节点列表的末尾。void
CharacterData. appendData(String arg)
将字符串附加到节点的字符数据的末尾。short
Node. compareDocumentPosition(Node other)
将参考节点,即将被调用此方法的节点与文档中的位置相关联的节点(即作为参数传递的节点)进行比较。Attr
Document. createAttribute(String name)
创建给定名称的Attr
。Attr
Document. createAttributeNS(String namespaceURI, String qualifiedName)
创建给定的限定名称和命名空间URI的属性。CDATASection
Document. createCDATASection(String data)
创建一个值为指定字符串的CDATASection
节点。Document
DOMImplementation. createDocument(String namespaceURI, String qualifiedName, DocumentType doctype)
使用其文档元素创建指定类型的DOM文档对象。DocumentType
DOMImplementation. createDocumentType(String qualifiedName, String publicId, String systemId)
创建一个空的DocumentType
节点。Element
Document. createElement(String tagName)
创建指定类型的元素。Element
Document. createElementNS(String namespaceURI, String qualifiedName)
创建给定限定名称和命名空间URI的元素。EntityReference
Document. createEntityReference(String name)
创建一个EntityReference
对象。ProcessingInstruction
Document. createProcessingInstruction(String target, String data)
创建指定名称和数据字符串的ProcessingInstruction
节点。void
CharacterData. deleteData(int offset, int count)
从节点中删除一个16位的单位范围。Attr
Element. getAttributeNodeNS(String namespaceURI, String localName)
通过本地名称和命名空间URI检索Attr
节点。String
Element. getAttributeNS(String namespaceURI, String localName)
通过本地名称和命名空间URI检索属性值。String
CharacterData. getData()
实现此接口的节点的字符数据。NodeList
Element. getElementsByTagNameNS(String namespaceURI, String localName)
返回NodeList
所有后代的Elements
具有给定本地名称和命名空间URI在文档顺序。Node
NamedNodeMap. getNamedItemNS(String namespaceURI, String localName)
检索由本地名称和命名空间URI指定的节点。String
Node. getNodeValue()
该节点的值取决于其类型; 见上表。Object
DOMConfiguration. getParameter(String name)
如果已知,返回参数的值。String
Node. getTextContent()
此属性返回此节点及其后代的文本内容。boolean
Element. hasAttributeNS(String namespaceURI, String localName)
返回true
在此元素上被指定或具有默认值,与给定的本地名称和命名空间的属性URIfalse
否则。Node
Document. importNode(Node importedNode, boolean deep)
将节点从另一个文档导入到本文档中,而不从原始文档更改或删除源节点; 此方法创建源节点的新副本。Node
Node. insertBefore(Node newChild, Node refChild)
插入节点newChild
现有的子节点之前refChild
。void
CharacterData. insertData(int offset, String arg)
以指定的16位单位偏移量插入字符串。void
Element. removeAttribute(String name)
按名称删除属性。Attr
Element. removeAttributeNode(Attr oldAttr)
删除指定的属性节点。void
Element. removeAttributeNS(String namespaceURI, String localName)
通过本地名称和命名空间URI删除属性。Node
Node. removeChild(Node oldChild)
从子列表中删除由oldChild
指示的子节点,并返回。Node
NamedNodeMap. removeNamedItem(String name)
删除由name指定的节点。Node
NamedNodeMap. removeNamedItemNS(String namespaceURI, String localName)
删除由本地名称和命名空间URI指定的节点。Node
Document. renameNode(Node n, String namespaceURI, String qualifiedName)
重命名类型为ELEMENT_NODE
或ATTRIBUTE_NODE
的现有节点。Node
Node. replaceChild(Node newChild, Node oldChild)
替换子节点oldChild
与newChild
儿童的名单,并返回oldChild
节点。void
CharacterData. replaceData(int offset, int count, String arg)
用指定的字符串替换从指定的16位单位偏移开始的字符。Text
Text. replaceWholeText(String content)
用指定的文本替换当前节点和所有逻辑上相邻的文本节点的文本。void
Element. setAttribute(String name, String value)
添加一个新属性。Attr
Element. setAttributeNode(Attr newAttr)
添加一个新的属性节点。Attr
Element. setAttributeNodeNS(Attr newAttr)
添加一个新属性。void
Element. setAttributeNS(String namespaceURI, String qualifiedName, String value)
添加一个新属性。void
CharacterData. setData(String data)
实现此接口的节点的字符数据。void
ProcessingInstruction. setData(String data)
该处理指令的内容。void
Element. setIdAttribute(String name, boolean isId)
如果参数isId
为true
,则此方法将指定的属性声明为用户确定的ID属性。void
Element. setIdAttributeNode(Attr idAttr, boolean isId)
如果参数isId
为true
,则此方法将指定的属性声明为用户确定的ID属性。void
Element. setIdAttributeNS(String namespaceURI, String localName, boolean isId)
如果参数isId
为true
,则此方法将指定的属性声明为用户确定的ID属性。Node
NamedNodeMap. setNamedItem(Node arg)
使用其nodeName
属性添加节点。Node
NamedNodeMap. setNamedItemNS(Node arg)
使用其namespaceURI
和localName
添加节点。void
Node. setNodeValue(String nodeValue)
该节点的值取决于其类型; 见上表。void
DOMConfiguration. setParameter(String name, Object value)
设置参数的值。void
Node. setPrefix(String prefix)
该节点的命名空间前缀,如果未指定,null
。void
Node. setTextContent(String textContent)
此属性返回此节点及其后代的文本内容。void
Attr. setValue(String value)
在检索时,属性的值作为字符串返回。void
Document. setXmlStandalone(boolean xmlStandalone)
一个属性指定,作为 XML declaration的一部分,该文档是否是独立的。void
Document. setXmlVersion(String xmlVersion)
作为 XML declaration的一部分的属性,指定此文档的版本号。Text
Text. splitText(int offset)
将该节点分解为指定的offset
两个节点,将树中的所有节点都作为兄弟节点。String
CharacterData. substringData(int offset, int count)
从节点中提取一系列数据。 -
Uses of DOMException in org.w3c.dom.css
Methods in org.w3c.dom.css that throw DOMException Modifier and Type 方法 描述 CSSStyleSheet
DOMImplementationCSS. createCSSStyleSheet(String title, String media)
创建一个新的CSSStyleSheet
。void
CSSMediaRule. deleteRule(int index)
用于从媒体块中删除规则。void
CSSStyleSheet. deleteRule(int index)
用于从样式表中删除规则。Counter
CSSPrimitiveValue. getCounterValue()
该方法用于获取计数器值。float
CSSPrimitiveValue. getFloatValue(short unitType)
此方法用于获取指定单位中的浮点值。Rect
CSSPrimitiveValue. getRectValue()
此方法用于获取Rect值。RGBColor
CSSPrimitiveValue. getRGBColorValue()
此方法用于获取RGB颜色。String
CSSPrimitiveValue. getStringValue()
此方法用于获取字符串值。int
CSSMediaRule. insertRule(String rule, int index)
用于在媒体块中插入新的规则。int
CSSStyleSheet. insertRule(String rule, int index)
用于在样式表中插入新规则。String
CSSStyleDeclaration. removeProperty(String propertyName)
用于删除CSS属性(如果在该声明块中已经显式设置)。void
CSS2Properties. setAzimuth(String azimuth)
请参阅CSS2中的方位属性定义。void
CSS2Properties. setBackground(String background)
请参阅CSS2中的background属性定义。void
CSS2Properties. setBackgroundAttachment(String backgroundAttachment)
请参阅CSS2中的background-attachment属性定义。void
CSS2Properties. setBackgroundColor(String backgroundColor)
请参阅CSS2中的background-color属性定义。void
CSS2Properties. setBackgroundImage(String backgroundImage)
请参阅CSS2中的background-image属性定义。void
CSS2Properties. setBackgroundPosition(String backgroundPosition)
请参阅CSS2中的background-position属性定义。void
CSS2Properties. setBackgroundRepeat(String backgroundRepeat)
请参阅CSS2中的background-repeat属性定义。void
CSS2Properties. setBorder(String border)
请参阅CSS2中的border属性定义。void
CSS2Properties. setBorderBottom(String borderBottom)
请参阅CSS2中的border-bottom属性定义。void
CSS2Properties. setBorderBottomColor(String borderBottomColor)
请参阅CSS2中的border-bottom-color属性定义。void
CSS2Properties. setBorderBottomStyle(String borderBottomStyle)
请参阅CSS2中的border-bottom-style属性定义。void
CSS2Properties. setBorderBottomWidth(String borderBottomWidth)
请参阅CSS2中的border-bottom-width属性定义。void
CSS2Properties. setBorderCollapse(String borderCollapse)
请参阅CSS2中的border-collapse属性定义。void
CSS2Properties. setBorderColor(String borderColor)
请参阅CSS2中的border-color属性定义。void
CSS2Properties. setBorderLeft(String borderLeft)
请参阅CSS2中的border-left属性定义。void
CSS2Properties. setBorderLeftColor(String borderLeftColor)
请参阅CSS2中的border-left-color属性定义。void
CSS2Properties. setBorderLeftStyle(String borderLeftStyle)
请参阅CSS2中的border-left-style属性定义。void
CSS2Properties. setBorderLeftWidth(String borderLeftWidth)
请参阅CSS2中的border-left-width属性定义。void
CSS2Properties. setBorderRight(String borderRight)
请参阅CSS2中的border-right属性定义。void
CSS2Properties. setBorderRightColor(String borderRightColor)
请参阅CSS2中的border-right-color属性定义。void
CSS2Properties. setBorderRightStyle(String borderRightStyle)
请参阅CSS2中的border-right-style属性定义。void
CSS2Properties. setBorderRightWidth(String borderRightWidth)
请参阅CSS2中的border-right-width属性定义。void
CSS2Properties. setBorderSpacing(String borderSpacing)
请参阅CSS2中的border-spacing属性定义。void
CSS2Properties. setBorderStyle(String borderStyle)
请参阅CSS2中的border-style属性定义。void
CSS2Properties. setBorderTop(String borderTop)
请参阅CSS2中的border-top属性定义。void
CSS2Properties. setBorderTopColor(String borderTopColor)
请参阅CSS2中的border-top-color属性定义。void
CSS2Properties. setBorderTopStyle(String borderTopStyle)
请参阅CSS2中的border-top-style属性定义。void
CSS2Properties. setBorderTopWidth(String borderTopWidth)
请参阅CSS2中的border-top-width属性定义。void
CSS2Properties. setBorderWidth(String borderWidth)
请参阅CSS2中的border-width属性定义。void
CSS2Properties. setBottom(String bottom)
请参阅CSS2中的底层属性定义。void
CSS2Properties. setCaptionSide(String captionSide)
请参阅CSS2中的标题侧属性定义。void
CSS2Properties. setClear(String clear)
请参阅CSS2中的清除属性定义。void
CSS2Properties. setClip(String clip)
请参阅CSS2中的剪辑属性定义。void
CSS2Properties. setColor(String color)
请参阅CSS2中的颜色属性定义。void
CSS2Properties. setContent(String content)
请参阅CSS2中的content属性定义。void
CSS2Properties. setCounterIncrement(String counterIncrement)
请参阅CSS2中的counter-increment属性定义。void
CSS2Properties. setCounterReset(String counterReset)
请参阅CSS2中的counter-reset属性定义。void
CSS2Properties. setCssFloat(String cssFloat)
请参阅CSS2中的float属性定义。void
CSSRule. setCssText(String cssText)
规则的可理解的文本表示。void
CSSStyleDeclaration. setCssText(String cssText)
声明块的可解释文本表示(不包括周围的花括号)。void
CSSValue. setCssText(String cssText)
当前值的字符串表示形式。void
CSS2Properties. setCue(String cue)
请参阅CSS2中的cue属性定义。void
CSS2Properties. setCueAfter(String cueAfter)
请参阅CSS2中的cue-after属性定义。void
CSS2Properties. setCueBefore(String cueBefore)
请参阅CSS2中的cue-before属性定义。void
CSS2Properties. setCursor(String cursor)
请参阅CSS2中的cursor属性定义。void
CSS2Properties. setDirection(String direction)
请参阅CSS2中的方向属性定义。void
CSS2Properties. setDisplay(String display)
请参阅CSS2中的显示属性定义。void
CSS2Properties. setElevation(String elevation)
请参阅CSS2中的elevation属性定义。void
CSS2Properties. setEmptyCells(String emptyCells)
请参阅CSS2中的empty-cells属性定义。void
CSSCharsetRule. setEncoding(String encoding)
在这个@charset
规则中使用的编码信息。void
CSSPrimitiveValue. setFloatValue(short unitType, float floatValue)
用指定单位设置浮点值的方法。void
CSS2Properties. setFont(String font)
请参阅CSS2中的font属性定义。void
CSS2Properties. setFontFamily(String fontFamily)
请参阅CSS2中的font-family属性定义。void
CSS2Properties. setFontSize(String fontSize)
请参阅CSS2中的font-size属性定义。void
CSS2Properties. setFontSizeAdjust(String fontSizeAdjust)
请参阅CSS2中的font-size-adjust属性定义。void
CSS2Properties. setFontStretch(String fontStretch)
请参阅CSS2中的font-stretch属性定义。void
CSS2Properties. setFontStyle(String fontStyle)
请参阅CSS2中的font-style属性定义。void
CSS2Properties. setFontVariant(String fontVariant)
请参阅CSS2中的font-variant属性定义。void
CSS2Properties. setFontWeight(String fontWeight)
请参阅CSS2中的font-weight属性定义。void
CSS2Properties. setHeight(String height)
请参阅CSS2中的height属性定义。void
CSS2Properties. setLeft(String left)
请参阅CSS2中的左侧属性定义。void
CSS2Properties. setLetterSpacing(String letterSpacing)
请参阅CSS2中的letter-spacing属性定义。void
CSS2Properties. setLineHeight(String lineHeight)
请参阅CSS2中的line-height属性定义。void
CSS2Properties. setListStyle(String listStyle)
请参阅CSS2中的list-style属性定义。void
CSS2Properties. setListStyleImage(String listStyleImage)
请参阅CSS2中的list-style-image属性定义。void
CSS2Properties. setListStylePosition(String listStylePosition)
请参阅CSS2中的list-style-position属性定义。void
CSS2Properties. setListStyleType(String listStyleType)
请参阅CSS2中的list-style-type属性定义。void
CSS2Properties. setMargin(String margin)
请参阅CSS2中的margin属性定义。void
CSS2Properties. setMarginBottom(String marginBottom)
请参阅CSS2中的margin-bottom属性定义。void
CSS2Properties. setMarginLeft(String marginLeft)
请参阅CSS2中的margin-left属性定义。void
CSS2Properties. setMarginRight(String marginRight)
请参阅CSS2中的margin-right属性定义。void
CSS2Properties. setMarginTop(String marginTop)
请参阅CSS2中的margin-top属性定义。void
CSS2Properties. setMarkerOffset(String markerOffset)
请参阅CSS2中的marker-offset属性定义。void
CSS2Properties. setMarks(String marks)
请参阅CSS2中的标记属性定义。void
CSS2Properties. setMaxHeight(String maxHeight)
请参阅CSS2中的max-height属性定义。void
CSS2Properties. setMaxWidth(String maxWidth)
请参阅CSS2中的max-width属性定义。void
CSS2Properties. setMinHeight(String minHeight)
请参阅CSS2中的min-height属性定义。void
CSS2Properties. setMinWidth(String minWidth)
请参阅CSS2中的min-width属性定义。void
CSS2Properties. setOrphans(String orphans)
请参阅CSS2中的孤儿属性定义。void
CSS2Properties. setOutline(String outline)
请参阅CSS2中的大纲属性定义。void
CSS2Properties. setOutlineColor(String outlineColor)
请参阅CSS2中的outline-color属性定义。void
CSS2Properties. setOutlineStyle(String outlineStyle)
请参阅CSS2中的outline-style属性定义。void
CSS2Properties. setOutlineWidth(String outlineWidth)
请参阅CSS2中的outline-width属性定义。void
CSS2Properties. setOverflow(String overflow)
请参阅CSS2中的overflow属性定义。void
CSS2Properties. setPadding(String padding)
请参阅CSS2中的padding属性定义。void
CSS2Properties. setPaddingBottom(String paddingBottom)
请参阅CSS2中的padding-bottom属性定义。void
CSS2Properties. setPaddingLeft(String paddingLeft)
请参阅CSS2中的padding-left属性定义。void
CSS2Properties. setPaddingRight(String paddingRight)
请参阅CSS2中的padding-right属性定义。void
CSS2Properties. setPaddingTop(String paddingTop)
请参阅CSS2中的padding-top属性定义。void
CSS2Properties. setPage(String page)
请参阅CSS2中的页面属性定义。void
CSS2Properties. setPageBreakAfter(String pageBreakAfter)
请参阅CSS2中的page-break-after属性定义。void
CSS2Properties. setPageBreakBefore(String pageBreakBefore)
请参阅CSS2中的page-break-before属性定义。void
CSS2Properties. setPageBreakInside(String pageBreakInside)
请参阅CSS2中的page-break-inside属性定义。void
CSS2Properties. setPause(String pause)
请参阅CSS2中的pause属性定义。void
CSS2Properties. setPauseAfter(String pauseAfter)
请参阅CSS2中的pause-after属性定义。void
CSS2Properties. setPauseBefore(String pauseBefore)
请参阅CSS2中的pause-before属性定义。void
CSS2Properties. setPitch(String pitch)
请参阅CSS2中的音高属性定义。void
CSS2Properties. setPitchRange(String pitchRange)
请参阅CSS2中的音高范围属性定义。void
CSS2Properties. setPlayDuring(String playDuring)
请参阅CSS2中的play-during属性定义。void
CSS2Properties. setPosition(String position)
请参阅CSS2中的position属性定义。void
CSSStyleDeclaration. setProperty(String propertyName, String value, String priority)
用于在此声明块中设置属性值和优先级。void
CSS2Properties. setQuotes(String quotes)
请参阅CSS2中的引号属性定义。void
CSS2Properties. setRichness(String richness)
请参阅CSS2中的richness属性定义。void
CSS2Properties. setRight(String right)
请参阅CSS2中的正确的属性定义。void
CSSPageRule. setSelectorText(String selectorText)
规则的页面选择器的可解析文本表示。void
CSSStyleRule. setSelectorText(String selectorText)
规则集的选择器的文本表示。void
CSS2Properties. setSize(String size)
请参阅CSS2中的size属性定义。void
CSS2Properties. setSpeak(String speak)
请参阅CSS2中的说话属性定义。void
CSS2Properties. setSpeakHeader(String speakHeader)
请参阅CSS2中的speak-header属性定义。void
CSS2Properties. setSpeakNumeral(String speakNumeral)
请参阅CSS2中的speak-numbers属性定义。void
CSS2Properties. setSpeakPunctuation(String speakPunctuation)
请参阅CSS2中的说话标点属性定义。void
CSS2Properties. setSpeechRate(String speechRate)
请参阅CSS2中的语速率属性定义。void
CSS2Properties. setStress(String stress)
请参阅CSS2中的stress属性定义。void
CSSPrimitiveValue. setStringValue(short stringType, String stringValue)
用指定单位设置字符串值的方法。void
CSS2Properties. setTableLayout(String tableLayout)
请参阅CSS2中的table-layout属性定义。void
CSS2Properties. setTextAlign(String textAlign)
请参阅CSS2中的text-align属性定义。void
CSS2Properties. setTextDecoration(String textDecoration)
请参阅CSS2中的text-decoration属性定义。void
CSS2Properties. setTextIndent(String textIndent)
请参阅CSS2中的text-indent属性定义。void
CSS2Properties. setTextShadow(String textShadow)
请参阅CSS2中的text-shadow属性定义。void
CSS2Properties. setTextTransform(String textTransform)
请参阅CSS2中的text-transform属性定义。void
CSS2Properties. setTop(String top)
请参阅CSS2中的顶层属性定义。void
CSS2Properties. setUnicodeBidi(String unicodeBidi)
请参阅CSS2中的unicode-bidi属性定义。void
CSS2Properties. setVerticalAlign(String verticalAlign)
请参阅CSS2中的vertical-align属性定义。void
CSS2Properties. setVisibility(String visibility)
请参阅CSS2中的visibility属性定义。void
CSS2Properties. setVoiceFamily(String voiceFamily)
请参阅CSS2中的voice-family属性定义。void
CSS2Properties. setVolume(String volume)
请参阅CSS2中的卷属性定义。void
CSS2Properties. setWhiteSpace(String whiteSpace)
请参阅CSS2中的空格属性定义。void
CSS2Properties. setWidows(String widows)
请参阅CSS2中的widows属性定义。void
CSS2Properties. setWidth(String width)
请参阅CSS2中的width属性定义。void
CSS2Properties. setWordSpacing(String wordSpacing)
请参阅CSS2中的word-spacing属性定义。void
CSS2Properties. setZIndex(String zIndex)
请参阅CSS2中的z-index属性定义。 -
Uses of DOMException in org.w3c.dom.events
Methods in org.w3c.dom.events that throw DOMException Modifier and Type 方法 描述 Event
DocumentEvent. createEvent(String eventType)
-
Uses of DOMException in org.w3c.dom.html
Methods in org.w3c.dom.html that throw DOMException Modifier and Type 方法 描述 void
HTMLSelectElement. add(HTMLElement element, HTMLElement before)
为这个SELECT
的OPTION
元素的集合添加一个新元素。void
HTMLTableRowElement. deleteCell(int index)
从当前行中删除单元格。void
HTMLTableElement. deleteRow(int index)
删除表格行。void
HTMLTableSectionElement. deleteRow(int index)
从此部分删除一行。HTMLElement
HTMLTableRowElement. insertCell(int index)
在此行中插入一个空的TD
单元格。HTMLElement
HTMLTableElement. insertRow(int index)
在表中插入一个新的空行。HTMLElement
HTMLTableSectionElement. insertRow(int index)
在此部分插入一行。 -
Uses of DOMException in org.w3c.dom.ls
Methods in org.w3c.dom.ls that throw DOMException Modifier and Type 方法 描述 LSParser
DOMImplementationLS. createLSParser(short mode, String schemaType)
创建一个新的LSParser
。Document
LSParser. parse(LSInput input)
从由LSInput
标识的资源中解析XML文档。Document
LSParser. parseURI(String uri)
从由URI引用[ IETF RFC 2396 ]标识的位置解析XML文档。Node
LSParser. parseWithContext(LSInput input, Node contextArg, short action)
从由LSInput
标识的资源中解析XML片段,并将内容插入到使用context
和action
参数指定的位置的现有文档中。String
LSSerializer. writeToString(Node nodeArg)
按照LSSerializer
接口的一般说明中所述将指定的节点序列化。 -
Uses of DOMException in org.w3c.dom.ranges
Methods in org.w3c.dom.ranges that throw DOMException Modifier and Type 方法 描述 DocumentFragment
Range. cloneContents()
复制范围的内容Range
Range. cloneRange()
产生一个新的范围,其边界点等于Range的边界点。void
Range. collapse(boolean toStart)
将范围折叠到其边界点之一short
Range. compareBoundaryPoints(short how, Range sourceRange)
比较文档中两个范围的边界点。void
Range. deleteContents()
从包含的文档或文档片段中删除范围的内容,而不返回对删除的内容的引用。void
Range. detach()
被称为表示该范围已不再使用,并且该实现可能放弃与此Range相关联的任何资源。DocumentFragment
Range. extractContents()
将范围的内容从包含的文档或文档片段移动到新的DocumentFragment。boolean
Range. getCollapsed()
如果范围已折叠,则为TRUENode
Range. getCommonAncestorContainer()
范围两个边界点最深的共同祖先容器。Node
Range. getEndContainer()
范围结束的节点int
Range. getEndOffset()
Range范围内结束节点的偏移量。Node
Range. getStartContainer()
范围开始的节点int
Range. getStartOffset()
距离起始节点内的偏移量。void
Range. insertNode(Node newNode)
在Range的开头插入一个节点到Document或DocumentFragment。void
Range. selectNode(Node refNode)
选择节点及其内容void
Range. selectNodeContents(Node refNode)
选择节点内的内容void
Range. setEnd(Node refNode, int offset)
设置描述范围结束的属性。void
Range. setEndAfter(Node refNode)
将范围的结束设置为节点之后void
Range. setEndBefore(Node refNode)
将结束位置设置为节点之前。void
Range. setStart(Node refNode, int offset)
设置描述范围开始的属性。void
Range. setStartAfter(Node refNode)
将开始位置设置为节点之后void
Range. setStartBefore(Node refNode)
将起始位置设置为节点之前void
Range. surroundContents(Node newParent)
将Range的内容重新指定给给定节点,并将节点插入到Range的起始位置。String
Range. toString()
以Range作为字符串返回Range的内容。 -
Uses of DOMException in org.w3c.dom.stylesheets
Methods in org.w3c.dom.stylesheets that throw DOMException Modifier and Type 方法 描述 void
MediaList. appendMedium(String newMedium)
将媒体newMedium
添加到列表的末尾。void
MediaList. deleteMedium(String oldMedium)
从列表中删除oldMedium
所示的媒体。void
MediaList. setMediaText(String mediaText)
媒体列表的可解析文本表示。 -
Uses of DOMException in org.w3c.dom.traversal
Methods in org.w3c.dom.traversal that throw DOMException Modifier and Type 方法 描述 NodeIterator
DocumentTraversal. createNodeIterator(Node root, int whatToShow, NodeFilter filter, boolean entityReferenceExpansion)
在指定节点上生成的子NodeIterator
创建一个新的NodeIterator
。TreeWalker
DocumentTraversal. createTreeWalker(Node root, int whatToShow, NodeFilter filter, boolean entityReferenceExpansion)
在指定节点上生成的子TreeWalker
创建一个新的TreeWalker
。Node
NodeIterator. nextNode()
返回集合中的下一个节点,并提高集合中的NodeIterator
的位置。Node
NodeIterator. previousNode()
返回集合中的上一个节点,并在NodeIterator
向后移动NodeIterator
的位置。void
TreeWalker. setCurrentNode(Node currentNode)
TreeWalker
目前所在的节点。 -
Uses of DOMException in org.w3c.dom.xpath
Methods in org.w3c.dom.xpath that throw DOMException Modifier and Type 方法 描述 XPathExpression
XPathEvaluator. createExpression(String expression, XPathNSResolver resolver)
使用解析的命名空间创建一个已解析的XPath表达式。Object
XPathEvaluator. evaluate(String expression, Node contextNode, XPathNSResolver resolver, short type, Object result)
评估XPath表达式字符串,如果可能,返回指定类型的结果。Object
XPathExpression. evaluate(Node contextNode, short type, Object result)
评估此XPath表达式并返回结果。Node
XPathResult. iterateNext()
如果没有更多节点,迭代并返回节点集中的下一个节点,或者null
。
-