在WebView Android React Native中绑定Click事件

时间:2016-07-11 03:03:55

标签: react-native react-native-android

我想在webview中绑定click事件 下面是我的代码,但它不起作用。

_renderContent() {
var s = '';
if(this.state.contents.length > 0) {
    this.state.contents.map(( guid, i) => {
     s += '<div style="font-size:48;padding-left:10px;"><button onClick =   alert("hi");>try<button></div>';
   });

  return (
     <WebView 
         source={ { html: s} }
         scalesPageToFit={true}
         startInLoadingState={false}
     /> 
);

} }

1 个答案:

答案 0 :(得分:0)

如果正确关闭按钮标记并将alert('hi')括在引号中会发生什么?

<div style="font-size:48;padding-left:10px;"><button onClick="alert('hi')";>try</button></div>