如何使用jquery ajax将marathi值传递给jsp页面

时间:2017-07-20 12:00:52

标签: jquery ajax jsp unicode send

我想将马拉地语名称传递给jsp页面,我几乎尝试了所有内容。我的jsp页面,数据库,表格一切都设置为utf-8,但我还是把O / P作为????像这样

$('#btnEducation2').click(function(e) {
     e.preventDefault();
    var name = $("#name").val();

    $.ajax({

        url: "UploadEducationDetails.jsp",
        type: "get",

        data: {
            name : name
        },
        cache: false,
        success: function(data) 
        {
            $("#tdEducationList").html(data).slideDown('slow');
            $("#tdEducationList").show();
        }
    });
});

0 个答案:

没有答案