掩码在MVC中的两个局部视图的JQuery中不起作用

时间:2019-07-10 07:23:05

标签: jquery asp.net-mvc asp.net-mvc-4 mask masking

我试图屏蔽来自状态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部分,就应该对所选电话号码进行屏蔽。

0 个答案:

没有答案