将数据从jquery移动页面插入数据库

时间:2013-07-11 08:52:17

标签: jquery database asp-classic

请我是asp.vb开发人员和jquery mobile的新手。我有一个页面,我想使用jquery mobile将数据从它插入到ms访问数据库。请帮助一个人吗?这是我的HTML:

<form id="form1" name="form1" method="post" action="sources/quest_rev.asp">
          <table width="525" border="0" cellpadding="3" cellspacing="3">
            <tr>
              <td width="59"><strong>Reply</strong></td>
              <td width="445"><textarea name="reply" cols="60" id="reply"></textarea></td>
            </tr>
            <tr>
              <td><strong>Name</strong></td>
              <td><input type="text" name="uname" id="uname" /></td>
            </tr>
            <tr>
              <td><strong>Number</strong></td>
              <td><input type="text" name="unumber" id="unumber" /></td>
            </tr>
            <tr>
              <td><strong>Location</strong></td>
              <td><label for="location"></label>
              <input type="text" name="location" id="location" /></td>
            </tr>
            <tr>
              <td>&nbsp;</td>
              <td><input type="submit" name="button" id="button" value="  Send  " /></td>
            </tr>
          </table>
        </form>

2 个答案:

答案 0 :(得分:0)

提交表单时,需要向服务器发送ajax请求,然后服务器应将表单数据保存到ms访问数据库。

jQuery无法将任何数据插入数据库

jQuery(function($){
    $('#form1').submit(function(){
        $.ajax({
            url: '<url>',
            type: 'POST',
            data: $(this).serialize()
        }).done(function(data){
            //do something
        });
        return false;
    })
})

答案 1 :(得分:0)