1
$(document).ready(function(){
    $('.completecompanyDetails').click(function(){
        var orgname = $("#companyName").val();
                var jsonData = {};
        jsonData.orgName = orgname;
        $.ajax({
            url: url,
            data:JSON.stringify(jsonData),
            type:"text",
            method:"POST",
            contentType:'application/json',
            success: function(data){
                window.location.href="/config";
                return true;
            },
            error: function () {
                alert("Error!");
                return true;
            }
        });
    });
});

我在第 8 行收到以下错误:

Uncaught TypeError: Accessing selectionDirection on an input element that cannot have a selection.
4

1 回答 1

2

type 用于定义 get 或 post 方法。type :'text'不是一个有效的选项。您在 type 选项下设置的方法的值。

如果要设置要接收响应的数据类型,请使用dataType密钥。即使在 dataType 键中,也只允许使用 xml、json、script 或 html。

请参阅http://api.jquery.com/jQuery.ajax/中的 jquery ajax 文档

于 2013-05-29T05:24:42.073 回答