JQuery学习笔记——Ajax全接触:Ajax语法,JSON ,跨域等问题
1、$("div").ajax();
$(document).ready(function(){
$("#b01").click(function(){
htmlobj=$.ajax({url:"/jquery/test1.txt",async:false});
$("#myDiv").html(htmlobj.responseText);
});
});
2...
原创
2018-12-28 16:22:02 ·
232 阅读 ·
0 评论