我正在开发一个使用 require.js 加载脚本的 Html 应用程序。我有一个使用 jquery load() 加载的主页。
我想知道我们是否可以使用 require.js 加载 html 页面。
我正在开发一个使用 require.js 加载脚本的 Html 应用程序。我有一个使用 jquery load() 加载的主页。
我想知道我们是否可以使用 require.js 加载 html 页面。
文本插件是你的朋友。请参阅有关该主题的文本插件文档或博客文章。
引用前文:
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.
}
);