$.ajax({
url:'userfeed',
type:'post',
dataType:'json',
data:{ans,udata},
success:function(data){
$("#container").prepend("<div>"+data+"</div>");
$("#textarea").val("");
}
在上面的代码中,我使用data属性来获取值。我的问题是如何在没有数据attriute的情况下传递ajax中的值?