我試圖得到一個組件自舉酥料餅內使內部反應成分:如何呈現一個引導酥料餅
componentDidMount() {
$(this.refs.shareLink).popover({
react: true,
title: "Share!",
content: <ShareLinkComponent lobbyid={this.props.lobbyid}/>
})
}
.....
<td><a href="#"><i ref="shareLink" className="fa fa-share-square-o"></i></a></td>
.....
class ShareLinkComponent extends Component {
render() {
return (
<div>
<p>Copy And Share</p>
<input type="text" value={`${window.location.host}/party/${this.props.lobbyid}`}/>
</div>
)
}
}
所以,我怎麼可能會做這項工作完全吻合。
這會支持onClick事件嗎?我想這樣做,當我點擊共享彈窗內的輸入字段時,它會突出顯示文本。 – Datsik
@Datsik不,如前所述,使用最初的技術,從字面上來說,沒有任何基於React的編程交互性可以工作,因爲它會呈現爲靜態字符串。 –