企业🤖AI Agent构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
DOMAttr表示DOMElement对象中的属性。 ``` DOMAttr extends DOMNode { /* 属性 */ //属性名称 public readonly string $name ; //包含属性的元素 public readonly DOMElement $ownerElement ; //尚未实现,始终为NULL public readonly bool $schemaTypeInfo ; //尚未实现,始终为NULL public readonly bool $specified ; //属性值 public string $value ; /* 方法 */ //创建一个新的DOMAttr对象 public __construct ( string $name [, string $value ] ) //检查属性是否为已定义的ID public isId ( void ) : bool } ```