码迷,mamicode.com
首页 > 其他好文 > 详细

16模块-messaging【发送短信】

时间:2018-07-18 14:01:39      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:发送邮件   短信发送   viewport   100%   body   fixed   asc   直接   use   

Messaging模块管理设备通讯功能,可用于短信、彩信、邮件发送等。通过plus.messaging可获取设备通讯管理对象。另外也可以直接通过html中的href直接快速发送短信、拨打电话、发送邮件等。

 

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<title>心得</title>
<script type="text/javascript">
function one(){
var msg = plus.messaging.createMessage(plus.messaging.TYPE_SMS);
msg.to = [‘要发送的手机号码‘];
msg.body = ‘要发送的内容‘;
plus.messaging.sendMessage(msg,function(){
alert(‘发送成功‘);
},
function(e){
alert(‘短信发送失败:‘+e.message);
});
}
</script>
</head>
<style>
#map{position: fixed;top: 200px;left: 0px;width: 100%;height:300px;}
</style>
<body>
<div onclick="one()" style="height:40px; line-height: 40px; border:#ccc dashed 1px;">发送短信</div>
</body>
</html>

 

16模块-messaging【发送短信】

标签:发送邮件   短信发送   viewport   100%   body   fixed   asc   直接   use   

原文地址:https://www.cnblogs.com/xhrs/p/9328255.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!