用于 SMS 消息传递的 window.location.href - 平台兼容性

window.location.href for SMS messaging - Platform compatability

本文关键字:href 平台 兼容性 location window SMS 消息传递 用于      更新时间:2023-09-26

我在Javascript中使用以下命令发送SMS消息。

window.location.href = "sms:[phone number goes here]?body=" + "hello test message";

我正在使用cordova 3.0 + Icenium开发我的应用程序。此命令是否会在所有智能手机上启动SMS客户端?-- 如果不是,哪些移动平台与此命令兼容?

我目前在我的HTC Nexus One Android设备上测试了它,它工作了。

试试这个:

window.open ("sms:[phone number goes here]?body=" + "hello test message","_system");

使用它就可以在iOS上运行

var ua = navigator.userAgent.toLowerCase();
var url;
if (ua.indexOf("iphone") > -1 || ua.indexOf("ipad") > -1)
    url = "sms:;body=test";
else
    url = "sms:?body=test";
//window.location.href = url;
 window.open (url);