我正在尝试使用Javascript接口将我的Android Java代码中的变量传递给WebView中的Javascript,但警报显示“未定义”。
这是Java的一部分:
public class WebAppInterface {
Context mContext;
WebAppInterface(Context c) {
mContext = c;
}
@JavascriptInterface
public int getValue() {
return 5;
}
}
和Javascript:
function getValue() {
Android.getValue();
}
var value = getValue();
alert(value);
请注意,我的界面名为“Android”。我做错了什么?
答案 0 :(得分:3)
尝试将'return'关键字添加到getValue函数中:
function getValue() {
return Android.getValue();
}
alert(getValue());