下面的代码在 Safari 中运行没有任何问题,但同一段代码在 iOS 中无法运行。fieldset 是否与 iOS 有任何问题?
环境:
Sencha Touch V2.0 iOS v5.0 模拟器
Ext.application({
name: 'Sencha',
launch: function() {
var formPanel = Ext.create('Ext.form.Panel', {
fullscreen: true,
items: [{
xtype: 'fieldset',
items: [
{
xtype: 'textfield',
name : 'name',
label: 'Name'
},
{
xtype: 'emailfield',
name : 'email',
label: 'Email'
},
{
xtype: 'passwordfield',
name : 'password',
label: 'Password'
}
]
}]
});
}
});
你能帮我们解释一下为什么上面的代码在 iOS 中不起作用。