0

使用 jQuery 中的 ajax 在另一个页面中调用特定 id 或 div 类的正确方法是什么?我的代码不起作用,我确定我只是语法不正确。

在此先感谢您的帮助

不起作用的代码->

   $.ajax({
      url: "includes/content.php",
      dataType: "html",
      success: function(data) {
        var result = $(data).find('.si');
        $("the div i present the content in").html(result);
4

1 回答 1

0

如果您打算将某个 div 加载到您的页面中,则可以改用该.load()方法。它让您将选择器作为参数传递,以仅获取加载页面的特定部分。

$('#id-of-element-to-present-the-result-in').load('includes/content.php .si');
于 2012-04-08T10:09:21.233 回答