跳到主要内容

Part.attr()

This Part.attr() method can be used to add attributes to the Part object. It calls this.attributes.add() under the hood, and returns the Part object.

If the third parameter is set to true it will call this.attributes.set() instead, thereby overwriting the value of the attribute.

Signature


Part Part.attr(
string name,
mixed value,
bool overwrite = false
)

提示

This method is chainable as it returns the Part object

Example

This is the example attribute value.

Example of the Part.attr() method