我正在使用该插件:https ://github.com/plentz/jquery-maskmoney来格式化我的货币编辑器...
我试图在那个编辑器中使用 KnockoutJS,但它不起作用......没有那个面具一切都很好......
我的代码测试很简单:
<input id="Price" data-bind="value: Price" type="text" name="Price">
Javascript屏蔽输入
$("#Price").maskMoney({ symbol: 'R$ ', showSymbol: true, thousands: '.', decimal: ',', symbolStay: false });
和淘汰赛JS
var ViewModel = function () {
this.Price = ko.observable();
this.PriceFinal= ko.computed(function () {
return this.Price()
}, this);
};
ko.applyBindings(new ViewModel());