html Obsługawartościliczbowych - 参数jakoilośćmiejscpo przecinku
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html Obsługawartościliczbowych - 参数jakoilośćmiejscpo przecinku相关的知识,希望对你有一定的参考价值。
ko.bindingHandlers.numeric = {
init: function (element, valueAccessor) {
$(element).on("keydown", function (event) {
// Allow: backspace, delete, tab, escape, and enter
if (event.keyCode === 46 || event.keyCode === 8 || event.keyCode === 9 || event.keyCode === 27 || event.keyCode === 13 ||
// Allow: Ctrl+A
(event.keyCode === 65 && event.ctrlKey === true) ||
// Allow: , for decimal and prevent if already exist
(event.key === "," && $(this).val().length > 0 && $(this).val().indexOf(",") === -1) ||
// Allow: - - if phone number
(element.type === "tel" && (event.keyCode === 109 || event.keyCode === 189)) ||
// Allow: home, end, left, right
(event.keyCode >= 35 && event.keyCode <= 39)) {
// let it happen, don't do anything
return;
} else {
// Ensure that it is a number and stop the keypress
if (event.shiftKey || (event.keyCode < 48 || event.keyCode > 57) && (event.keyCode < 96 || event.keyCode > 105)) {
event.preventDefault();
}
}
});
if (valueAccessor() !== null) {
$(element).on("focus",
function() {
if ($(this).context.value === "0")
$(this).context.value = "";
});
$(element).on("blur",
function() {
if ($(this).context.value === "")
$(this).context.value = "0";
});
}
},
update: function (element, valueAccessor, allBindings) {
allBindings().value.extend({ numeric: valueAccessor() });
}
};
<input data-bind="value: Field, numeric: 2" />
以上是关于html Obsługawartościliczbowych - 参数jakoilośćmiejscpo przecinku的主要内容,如果未能解决你的问题,请参考以下文章
javascript Ustawienie obserwatoranawłaściwośćobiektuzmieniającegarównieżjegoinnawłaściwość
typescript Właściwościstatyczne
typescript Właściwościopcjonalne
typescript Akcesorywłaściwości/物业配件
typescript Właściwościtylkodo odczytu
php Metody statyczne /właściwościstatyczne