使用jQuery中的ajax在另一个页面中调用div的特定id或类的正确方法是什么? 我的代码不起作用,我确定我只是没有正确的语法。
提前感谢您的帮助
不起作用的代码 - >
$.ajax({
url: "includes/content.php",
dataType: "html",
success: function(data) {
var result = $(data).find('.si');
$("the div i present the content in").html(result);
答案 0 :(得分:0)
如果您打算在页面中加载某个div,则可以使用.load()
方法。它允许您将选择器作为参数传递,以仅获取加载页面的某个部分。
$('#id-of-element-to-present-the-result-in').load('includes/content.php .si');