单击时显示没有警报和textarea的消息

时间:2013-08-26 15:48:39

标签: jquery html ajax json

我有一个用于servlet引用的json id,这个json id中有一条消息需要在网页上打印。
它适用于textarea标签和警报,但我需要以样式(装饰,动画)显示消息 我该怎么办?

这是ajax代码:

$.ajax({
    url: "/hello3",
    type:"GET",
    data:"currentId=" +currentId ,
    dataType:"json",
    success: function(data,status){
    $('#json').val(" The deleted row is "+data.currentId)

}
});
});
});

这是我的HTML:

<div>
    <textarea id="json" rows="10" cols="50" disabled></textarea>
</div>

1 个答案:

答案 0 :(得分:0)

[DEMO]

试试这个

$('#json').hide();
        $.ajax({
            url: "/hello3",
            type: "GET",
            data: "currentId=" + currentId,
            dataType: "json",
            success: function (data, status) {
                $('#json').text(" The deleted row is " + data.currentId).slideDown();

            }
        });
    });

希望这有帮助,谢谢