1

我正在开发一个使用 require.js 加载脚本的 Html 应用程序。我有一个使用 jquery load() 加载的主页。

我想知道我们是否可以使用 require.js 加载 html 页面。

4

1 回答 1

0

文本插件是你的朋友。请参阅有关该主题的文本插件文档博客文章

引用前文:

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.
    }
);
于 2013-11-07T20:55:11.607 回答