请问大家开发ext js的项目是用什么工具?
我用txt敲好代码然后改成html运行看不到效果,改成localhost:8080/页面 也不能访问。
firebug和火狐一起用是用来干什么的?可以浏览ext js 的页面吗?
我是初学者,麻烦大家推荐一下开发用的工具。

解决方案 »

  1.   

    用localhost的话,你要配置IIS,你IIS配置好了吗?
      

  2.   

    If you want to developing Extjs, you should import Ext js lib first, ext-all.js, ext-base.js ext-all.css, and make sure the path is reachable.*****************
    <html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
        <title>Your test</title>
        <link rel="stylesheet" type="text/css" href="../../resources/css/ext-all.css"/>
        <script type="text/javascript" src="../../adapter/ext/ext-base.js"></script>
        <script type="text/javascript" src="../../ext-all.js"></script>
    </head>
    ********************In firefox+firebug, you can debug js, css and view DOM easily. What's more you can use the "console.log()" to dump the object, that is very helpful.For the IDE of Extjs, I am using the MyEclipse, + firefox + firebug.
      

  3.   

    火狐是浏览器类似于IE。
    firebug是火狐上的一个插件,是javascript调试工具。
      

  4.   

    第一段是extjs 需要引用的库
    第二段是 firefox+firebug可对js文件调试 MyEclipse是一个不错的开发工具