weixin_33721344 2016-06-13 01:52 采纳率: 0%
浏览 17

Ajax提交某些字段

I'm new to Jquery ajax, and I'm trying to submit certain field only for checking instead of submitting the whole form. Here I have made a function for checking the username whether is it available, and it works fine, but I doesn't want it to submit the whole form when doing the checking.

Here is my script:

<form id="userCheck">
<input type="text" class="register_field" name="fr_username" id="fr_username" />
<input type="text" class="register_field" name="fr_password" id="fr_password" />
<input type="text" class="register_field" name="fr_password1" id="fr_password1" />
</form>

<script>
$.validator.addMethod("duplicateCheck", function(value, element) {
            $.ajax({
        type: 'POST',
        url: '../a/checkDuplicate',
        data: $("#userCheck").serialize(),
        dataType: 'json'
    }).success(function(data){
        if(data.status == '1'){
            console.log('Available!');
        }
        else {
            console.log('not available');
            $('#fr_dupChkU_msg').html('');
        }
    });
        });
</script>
  • 写回答

1条回答 默认 最新

  • local-host 2016-06-13 02:04
    关注

    In short, that is how you get a value of an input field with jQuery:

    <script type="text/javascript">
      var username = $('#fr_username').val();
    
      $.validator.addMethod('duplicateCheck', function(value, element) {
                $.ajax({
            type: 'POST',
            url: '../a/checkDuplicate',
            data: {username: username},
        }).success(function(data){
            if(data.status == '1'){
                console.log('Available!');
            }
            else {
                console.log('not available');
                $('#fr_dupChkU_msg').html('');
            }
        });
            });
    </script>
    
    评论
    编辑
    预览

    报告相同问题?

    悬赏问题

    • ¥15 PADS Logic 原理图
    • ¥15 PADS Logic 图标
    • ¥15 电脑和power bi环境都是英文如何将日期层次结构转换成英文
    • ¥20 气象站点数据求取中~
    • ¥15 如何获取APP内弹出的网址链接
    • ¥15 wifi 图标不见了 不知道怎么办 上不了网 变成小地球了
    手机看
    程序员都在用的中文IT技术交流社区

    程序员都在用的中文IT技术交流社区

    专业的中文 IT 技术社区,与千万技术人共成长

    专业的中文 IT 技术社区,与千万技术人共成长

    关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

    关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

    客服 返回
    顶部