0
"autoNumeric"プラグインは、フィールドがフォーカスされたり、上にホバリングしたりするとすぐに入力フィールドをゼロで埋めます。私は、エンドユーザーにいくつかのフィールドを空白のままにしておきたい。空白はゼロと同じではありません。解決策はありますか?jquery autonumeric plugin:空白のフィールドからnullを取得したいが、0で自動入力される
"autoNumeric"プラグインは、フィールドがフォーカスされたり、上にホバリングしたりするとすぐに入力フィールドをゼロで埋めます。私は、エンドユーザーにいくつかのフィールドを空白のままにしておきたい。空白はゼロと同じではありません。解決策はありますか?jquery autonumeric plugin:空白のフィールドからnullを取得したいが、0で自動入力される
チェックAutoNumericOptions.js
ファイル内emptyInputBehavior
オプションのドキュメントは:
/* Defines what should be displayed in the element if the raw value is an empty string ('').
* - 'focus' : The currency sign is displayed when the input receives focus (default)
* - 'press' : The currency sign is displayed whenever a key is being pressed
* - 'always' : The currency sign is always displayed
* - 'zero' : A zero is displayed ('rounded' with or without a currency sign) if the input has no value on focus out
* - 'null' : When the element is empty, the `rawValue` and the element value/text is set to `null`. This also allows to set the value to `null` using `anElement.set(null)`.
*/
emptyInputBehavior: {
null : 'null',
focus : 'focus',
press : 'press',
always: 'always',
zero : 'zero',
},
何が欲しいのは(デフォルトで)'focus'
からemptyInputBehavior
を設定することで、あなたはどんな「ゼロ」は追加取得することはありません入力してください。 v4
はnext
です。