小编典典

$ .ajax()只获得身体

ajax

我有这样的脚本

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Testing Ajax</title>
<script type="text/javascript" src="jquery.js"></script>
</head>
<body>
<a class="test" href="getthis.php">click here</a>
<div class="get"></div>

<script type="text/javascript">
    $('.test').click(function(event){
        event.preventDefault();
        var a = $('body');
        $.ajax({
            url: "/getthis.php",
            dataType: 'text',
            success: function(data){            
                $('.get').append(data.find);
            }
        });
    });
</script>
</body>
</html>

使用此脚本,我尝试获取内容getthis.php

getthis.php仅包含此内容

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
        <title></title>
    </head>
    <body>
        Olalalalala bebe
    </body>
    </html>

当我这样做时,我得到的结果是getthis.php的完整html

我怎么只能得到身体的满足感?这只是卑鄙的。“ Olalalalala贝贝”

有人可以给我解释吗?

谢谢…


阅读 223

收藏
2020-07-26

共1个答案

小编典典

使用http://api.jquery.com/load/您可以加载特定的页面片段

2020-07-26