使用require.js加载html页面

时间:2013-09-13 16:29:55

标签: requirejs

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

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

1 个答案:

答案 0 :(得分:0)

文本插件是你的朋友。请参阅text plugin documentationblog 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.
    }
);