假设我想使用 $.ajax
从 php 页面获取结果,即。
$.get("mypage.php", { 'id': "175" }, function(result) {
console.log(result);
});
在这里,结果将是:
<html>
<body>
...
<div id="container">...</div>
</body>
</html>
使用 .load() 时,我可以指定我感兴趣的元素。即。$('.mydiv').load("something.html #container")
我只会得到容器。我想知道 $.ajax 是否可以做类似的事情,以便我可以做这样的事情:
$.get("mypage.php", { 'id': "175" }, function(result) {
console.log(result #container); //only gives me the <div id="container"> element
});