Phonegap构建短信实施不起作用

时间:2015-07-24 09:30:20

标签: android jquery cordova phonegap-build

我试图开发一个应用程序来发送使用phonegap build编译的短信。 我在config.xml中声明了[sms插件] [1],但是当我尝试我的应用程序时,没有做任何事情。我正在使用jquery mobile。

这是我的代码

//code page accueil
$( document ).on( "pagecreate", "#accueil", function( event ) {
//alert( "pageAccueil was just enhanced by jQuery Mobile!" );
$( document ).on( "click", "#envoyerSms", function( event ) {
 alert("le click envoyerSms fonctionne");

      var number = $('#numberTxt').val();
    var msg = $('#messageTxt').val();
    alert(number);
    alert(msg);

    //CONFIGURATION
    var options = {
        replaceLineBreaks: false, // true to replace \n by a new line, false by default
        android: {
            intent: 'INTENT'  // send SMS with the native android SMS messaging
            //intent: '' // send SMS without open any other app
        }
    };

    var success = function () { alert('Message sent successfully'); };
    var error = function (e) { alert('Message Failed:' + e); };
    sms.send(number, message, options, success, error);




    });
});//accueil

有人可以帮我吗?

0 个答案:

没有答案