这个问题可能有点误导,因为我不想知道如何在 div 中打开 html 文档,但我问了这个问题,因为我目前面临无法替换我已经拥有的 html 文件的问题放在一个div中
我已经使用 ajax 在 div 中放置了一个 html 文件,如下所示:
$.ajax({
url: 'calender.aspx',//this is html.aspx file
cache: false,
dataType: "html",
success: function (data) {
$(".mainBar").html(data);//mainBar is the div
}
});
这个文件被放置在页面加载上,即 document.ready 函数,直到这里一切都很好......当我想替换文件时,我的麻烦开始了,我所做的是调用一个 javascript 函数,在按钮单击时说 replaceFile()编写相同的代码来替换文件(当然要更改 url)
像这样
function replaceFile()
{
$.ajax({
url: 'Another.aspx',
cache: false,
dataType: "html",
success: function (data) {
$(".mainBar").html(data);
}
});
}
但这不起作用,请帮帮我!