我试图屏蔽来自状态js的值,但是屏蔽仅应用于输入框,而不应用于所选值。
我正在使用两个局部视图来列出国家/地区代码并编辑电话详细信息,同时我转到列表并选择任何代码,然后返回到电话详细信息页面,在输入的文本上使用了蒙版,但未使用选择值来自表单状态。
我尝试过
$('document').ready(function() {
$('.text-phone-type', $('#settings-personal-details-phone-details')).mask(getMaskPatternFromJsonArray(phCountryCode));
});
$('.text-phone-type', $('#settings-personal-details-phone-details')).unmask()
.mask(getMaskPatternFromJsonArray(phCountryCode));
我的代码:
//To get the values from state.
getValuesFromState();
//To apply the mask.
$('.text-phone-type', $('#settings-personal-details-phone-details')).mask(getMaskPatternFromJsonArray(phCountryCode));
一旦我回到phonedetails部分,就应该对所选电话号码进行屏蔽。