0

我将输入字段写为type="number". 它在 iphone 上显示数字和一些特殊字符,如()等键盘。

但是,如果我单击(,它会自动将其删除并仅显示数字。

我必须制作显示数字键盘的应用程序,并且不仅可以输入数字,还可以输入一些特殊字符,如(, ), white-space, ',"等。我希望你能帮助我。

PS。我正在使用cordova2.8.1

4

1 回答 1

1

Instead of using <input> tag with type number you can use Sencha touch xtype: numberfield in following way, it would give result as u expect:

  {
    xtype: 'numberfield',
    label: 'Phone Number',
    labelAlign:'top',
    component: {
      xtype: 'input',
      type: 'tel'
    },
  },
于 2013-08-23T13:35:28.500 回答