直接上代码:Ext.onReady(function(){
alert('1112233');
Ext.tip.QuickTipManager.init();
var main = Ext.create('Ext.panel.Panel', {
    id : "main",
    padding: '0 0 0 50',
    height: 550,
    width: 800,
    layout: {
        type: 'table',
        columns: 1
    },
    renderTo:Ext.getBody(),
    items: [
        {
            xtype: 'form',
            height: 471,
            width: 632,
            title: 'My Form', //
            items: [
                {
                    xtype: 'datefield'
                }
            ]
        }
    ]
});如果给里面的Form指定了Title 浏览器就会崩溃 怎么回事啊