使用ajax请求。下面是代码逻辑
$.ajax({ url:url, type:‘get‘, dataType: "text", success:function(msg){ $(‘#div‘).html(msg) }, error:function(){ alert(‘error‘); } })
时间: 2024-10-25 19:29:48
使用ajax请求。下面是代码逻辑
$.ajax({ url:url, type:‘get‘, dataType: "text", success:function(msg){ $(‘#div‘).html(msg) }, error:function(){ alert(‘error‘); } })