我的项目的Contents文件夹中有一个html文件。我有一个ID为“FictionContent”的div,我想分配该HTML文件的内容。
以下是一个很好的方法:
$('#FictionContent').html('Content/huckfinn.html');
jQuery是否将“内容”理解为子文件夹,因此知道在哪里抓取html?如果没有,那么做一些尽可能相似的事情的解决方法是什么?
答案 0 :(得分:2)
这里有两个例子:
来自变量的内容
var mycontent = "Hello World";
$('#FictionContent').html(mycontent);
来自html文件的内容
$('#FictionContent').load('Content/huckfinn.html');
答案 1 :(得分:0)
试试这个:
$('#FictionContent').load('Content/huckfinn.html');