📅  最后修改于: 2023-12-03 15:02:20.018000             🧑  作者: Mango
在 jQWidgets 中,jqxNumberInput 是一个用于数值输入的组件,可以通过 inputMode 属性来指定数值输入模式。本文将介绍 inputMode 属性的含义、取值及其对应的输入模式。
inputMode 属性是 jqxNumberInput 的一个属性,用于指定数值输入模式。根据输入模式的不同,数值输入时会有所不同。因此,inputMode 属性是一个非常重要的属性。
inputMode 属性有以下取值及对应的输入模式:
$('#numberInput').jqxNumberInput({
inputMode: 'simple'
});
$('#numberInput').jqxNumberInput({
inputMode: 'advanced'
});
$('#numberInput').jqxNumberInput({
inputMode: 'floatingPoint'
});
$('#numberInput').jqxNumberInput({
inputMode: 'decimal'
});
$('#numberInput').jqxNumberInput({
inputMode: 'currency',
currency: {
symbol: '$',
position: 'left'
}
});
$('#numberInput').jqxNumberInput({
inputMode: 'percent'
});
本文介绍了 jQWidgets jqxNumberInput 的 inputMode 属性及其取值,包括 simple、advanced、floatingPoint、decimal、currency 和 percent 等输入模式。在实际使用中,根据需要选择不同的 inputMode 值即可。