0
<div id="wrap">
    <table id="listTable"></table>
</div>

情况1)

Ext.onReady(function () {
    Ext.define("testClass", {
        extend: 'Ext.panel.Panel',
        title: 'Hello',
        layout: 'fit',
        items: { html: 'AAAA' },
        renderTo : 'listTable'
    }, function () {
        var cls = new testClass();
    });
});// end onReady

案例#2)

Ext.onReady(function () {

    Ext.create('Ext.panel.Panel', {
        title: 'Hello',
        layout: 'fit',
        items: { html: 'AAAA' },
        renderTo: 'listTable'
    });
});// end onReady

还是你有更好的主意?请给我建议。

4

1 回答 1

0

第二个是正确的。如果你只打算使用一次,为什么还要定义一个类呢?

于 2012-11-15T21:35:23.977 回答