ajax: jquery get request

前端之家收集整理的这篇文章主要介绍了ajax: jquery get request前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

<script>

//异步请求@人功能

function at(){

$.get('some.url.com/controller/action',function(resp){

if(resp!=null){//alert(resp);

tt_tips = new TextAreaAutoTips('post_text',{

debug: false,

data:resp

});

}

});

}

window.onload = at;

</script>


后端那边最后就是echo $data ;

原文链接:https://www.f2er.com/ajax/165975.html

猜你在找的Ajax相关文章