将 Intel XDK sendSMS 函数与单击事件结合使用时出现问题
Issues using Intel XDK sendSMS function with on click event
我一直在尝试让短信应用程序加载到我的三星
注 4 我正在使用它来测试我使用
开发的应用程序
intel xdk ide(Cordova 应用程序)。下面是我
的点击事件
我正在使用它,但没有按预期工作。
//.numbers class element is created dynamically
$(document).on("click",".numbers a",function(e){
//stop link from refreshing
e.preventDefault();
//the alert below will work when uncommented
//alert("event works");
//The function call below will not work.
//note I am using a real number in my app
//and it will work if I call if from another button on click event
intel.xdk.device.sendSMS("hello","8161234567");
});
谢谢,
拉里·J·莱恩
我发现了问题。这是一个 array.push
缺少结束符的函数调用)。
我一直在尝试让短信应用程序加载到我的三星
注 4 我正在使用它来测试我使用
开发的应用程序intel xdk ide(Cordova 应用程序)。下面是我
的点击事件我正在使用它,但没有按预期工作。
//.numbers class element is created dynamically
$(document).on("click",".numbers a",function(e){
//stop link from refreshing
e.preventDefault();
//the alert below will work when uncommented
//alert("event works");
//The function call below will not work.
//note I am using a real number in my app
//and it will work if I call if from another button on click event
intel.xdk.device.sendSMS("hello","8161234567");
});
谢谢, 拉里·J·莱恩
我发现了问题。这是一个 array.push 缺少结束符的函数调用)。