<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <script type="text/javascript" src="../adapter/ext/ext-base.js"></script>
    <script type="text/javascript" src="../ext-all-debug.js"></script>
    <!-- Include Ext stylesheets here: -->
    <link rel="stylesheet" type="text/css" href="../resources/css/ext-all.css">    
<!--<script type="text/javascript">-->
    <!-- Ext localization javascript -->
 
    <!-- Locale and example extension javascript -->
    <script type="text/javascript">
  var html = '<a id="{id}" href="{url}" class="nav">{text}</a><br />';
 
var tpl = new Ext.Template(html);
tpl.compile();
tpl.append('blog-roll', {
    id: 'link1', 
    url: 'http://www.jackslocum.com/', 
    text: "Jack's Site"
});
tpl.append('blog-roll', {
    id: 'link2', 
    url: 'http://www.extjs.com/', 
    text: "Jack's New Site"
});
    </script>
    <title id="title">Localization Example</title>
</head>
<body>
<div id="blog-roll"></div>
</body>
</html>
为何在FF下报错说el is null 难道我少导入了js文件?