使用 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);