如http://facebook.github.io/react/docs/jsx-gotchas.html所述,React能够呈现自定义属性 :
如果要使用自定义属性,则应在其前面加上data-。
<div data-custom-attribute="foo" />
那是个好消息,除了我找不到从事件对象访问它的方法,例如:
render: function() {
...
<a data-tag={i} style={showStyle} onClick={this.removeTag}></a>
...
removeTag: function(event) {
this.setState({inputVal: event.target????});
},
元素和data-
属性以html呈现。style
可以像这样访问标准属性event.target.style
。而不是event.target
我尝试:
event.target.props.data.tag
event.target.props.data["tag"]
event.target.props["data-tag"]
event.target.data.tag
event.target.data["tag"]
event.target["data-tag"]
这些都不起作用。
I do not know about React, but in the general case you can pass custom attributes like this:
1) define inside an html-tag a new attribute with data- prefix
2) get from javascript with