使用phonegap和php的Ajax POST

时间:2013-08-14 16:48:50

标签: php ajax cordova

我正在开发一个Android应用程序,我想将我的数据存储在远程数据库中。我有我的index.html,jquery 1.9.1和test.php。

我想通过运行我的Android应用程序的ajax将您在index.html中提交的信息存储到test.php。

你知道我怎么能这样做吗?

PS:我用wamp工作测试了我的Web应用程序,我知道如果你不在同一个域中就行不通了

尝试这样的事情:

的index.html:

<form action="javascript:func();" >


    <div id="divSend" >
        <input type="button" value="Send" id="send" />
    </div>
    <div id="divMensagem">
        <textarea placeholder="type anything..." rows="6" name="sms" id="sms"></textarea>
    </div>

</form>

我的file.js:

$(document).ready(function (){
            $('#send').bind('click', function (e){
                e.preventDefault();
                var sms = $('#sms').val(); 
                var p = $.post( 'http://www.domain.com/test/test.php', { sms: sms } );

                p.done(function (data){
                    alert(data);
                });
           }); 
        });

我的index.php:

<php
          $sms = $_POST['sms'];

           echo $sms;
?>

0 个答案:

没有答案