加载javascript

时间:2018-12-28 08:40:37

标签: javascript android webview

我想加载一个网站,然后安排一个计时器等待5秒钟以应用我的JavaScript。但是问题是当我等待5秒钟时,应用程序将崩溃。

我已经设置了webSettings.setJavaScriptEnabled和webSettings.setDomStorageEnabled。

我的网络视图定义为公共静态。

webview.loadUrl("mywebite")
timer2.schedule(new page.MyTimerTask2(), 5000, 1000);


public class MyTimerTask2 extends TimerTask{
  public void run(){
    webview.loadUrl("javascript:document.getElementById('EmpSN').value = '0'");
  }
}

0 个答案:

没有答案