我正在开发一个使用require.js来加载脚本的Html应用程序。我有一个使用jquery load()加载的主页。
我想知道我们是否可以使用require.js加载html页面。
答案 0 :(得分:0)
文本插件是你的朋友。请参阅text plugin documentation或blog post on that topic。
引用前者:
require(["some/module", "text!some/module.html", "text!some/module.css"],
function(module, html, css) {
//the html variable will be the text
//of the some/module.html file
//the css variable will be the text
//of the some/module.css file.
}
);