看一个最少需求的HTML页面设置。


    
</body> 
</html>

ext-all.css是ExtJs使用的css文件

ext-base.js是 ExtJs的基本文件

ext-all-debug.js在生产环境中应该由ext-all.js取代

对应的Javascript文件:

;
Ext.onReady(function(){
           alert(
'I am ready!');
        });

 

其中Ext.BLANK_IMAGE_URL用来指示s.gif的本地路径(Ext uses a 1x1 transparent gif image to create inline icons with CSS background images. The default URL to this file is "extjs.com/s.gif")

如果没有意外,在浏览器中打开Main.html将弹出消息框。

相关文章:

  • 2021-11-25
  • 2022-12-23
  • 2021-11-19
  • 2021-11-17
  • 2021-11-20
  • 2021-06-01
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-11-22
  • 2022-12-23
  • 2021-11-24
  • 2021-12-05
相关资源
相似解决方案