JQuery的
假设这有效:$('table td').load('/my/url/ div p');
我最终会以<td><p>Some Text</p></td>
我想以<td>Some Text</td>
我该怎么做?
答案 0 :(得分:8)
选择p:
的所有直系子女$('table td').load('/my/url/ div p > *');
答案 1 :(得分:0)
您可能需要使用回调函数。类似的东西:
$('table td').load('/my/url/ div p', function () {
$(this).find("p").replaceWith($(this).text());
});
答案 2 :(得分:0)
var el = $('table td').load('/my/url/ div p', function() {
var $this = $(this);
$this.html($this.find('p').html());
});