Android webview在xhtml中加载javascript函数

时间:2014-07-20 11:52:15

标签: javascript android webview xhtml

我使用loadUrl函数调用webview中的JavaScript函数:

 webview.loadUrl("javascript:(function(){
 if (window.find) {
  if(window.getSelection){
 window.document.designMode = 'on';
  window.document.execCommand('hiliteColor',false,'yellow');
 window.document.designMode = 'off';
  }}})()");

这适用于heightlight选中的文字 在将html文件加载到我的webview期间它与我合作但是在尝试查看xhtml文件到webview时它不起作用我该如何处理这个?

0 个答案:

没有答案