package com.she.jyass.UI;

import android.content.Context;
import android.webkit.WebView;

public class myWebView extends WebView {
	public native String StringstringByEvaluatingJavaScriptFromString(String script);
	public myWebView(Context context) {
		super(context);
	}
}

使用myWebView即可用StringstringByEvaluatingJavaScriptFromString来执行js并获得返回值
posted on 2015-01-27 17:06  老游条  阅读(747)  评论(0编辑  收藏  举报