欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

ajax-load实例

程序员文章站 2022-05-03 15:18:34
...
ajax-load实例
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>1.ajax-load()</title>
</head>
<body>
<img src="../images/zly.jpg" width="150">
<div></div>
<button>点击</button>
</body>
</html>
<script type="text/javascript" src="../js/jquery-3.3.1.js"></script>
<script type="text/javascript">
$('button').eq(0).on('click',function(){
$('div').eq(0)
// .load('api/info.php')
// .load('api/info.php'+' p')  //支持选择器
// .load('api/info.php'+' h3')
// .load('api/info.php',{birthday:'10月16日',nation:"中国"}) //POST
// .load('api/info.php','age=31&sex=女') //GET
.load('api/info.php','age=31&sex=女',function(){
$('img').css('border-radius','50%')
}) //callBack()
})
</script>

以上就是ajax-load实例的详细内容,更多请关注其它相关文章!