我有
function doSomething(response){
...
}
在调用此函数时需要eventlistener才能工作
document.addEventListener('onRunFunction', function(response){
alert(response);
});
当doSomething("Text here")
工作时,我会看到警告窗口
"在这里发短信"。
重要提示:我无法触及第一个(doSomething)功能