我正在改变JSNI中的JavaScript函数,但eventlistener没有正确调用。这是代码:
private native void alert1()/*-{
$doc.addEventListener('DOMContentLoaded', function webViewerLoad(evt) {
$wnd.alert("1111111");
}, true);
}-*/;
Javascript功能是:
document.addEventListener('DOMContentLoaded', function webViewerLoad(evt) {
window.alert("2222222222");
}, true);
有什么建议吗?
答案 0 :(得分:1)
onModuleLoad
(几乎)保证在 DOMContentLoaded
后运行,所以: