webview和html互相调用

  • Post author:
  • Post category:其他



下面是index.htmlx界面代码


<html>
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
</head>
<body>
   <nav title="webview和html互相调用"></nav>
   
   <webview id="webview" width="100%" height="100%" url="local://html/my.htm" />
</body>
<script>
  
  //webview调用html里面的方法
  webview.addEvent("onFinished" , function(){ 
    webview.execute("changeLabelValue()");
  })  
  
  webview.addEvent("onFailured" , function(){  
          
  })  
  
  function click1(data){
    //html传过来的中文会出现乱码,所以使用解码方法进行解码
      var string = decodeURIComponent(data);
      alert(string)
    }
  
</script>
</html>


点击可以下载htmlWebview.zip示例demo



版权声明:本文为haozhenming原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。