1
是否有人有示例代碼來將電話號碼格式應用於某些字段???我有點像JS黑客。幫幫我!CRM 2011手機格式化
是否有人有示例代碼來將電話號碼格式應用於某些字段???我有點像JS黑客。幫幫我!CRM 2011手機格式化
您應該創建一個庫並在下面添加兩個方法,然後將其作爲Web資源上載。然後將「OnPhoneFieldChange」功能分配給您想要生效的每個字段的更改事件
function OnPhoneFieldChange(context)
{
var value = context.getEventSource().getValue();
if (typeof(value) != "undefined" && value != null)
{
value = formatPhoneNumber(value);
}
context.getEventSource().setValue(value);
}
function formatPhoneNumber(inputValue) {
var scrubbed = inputValue.toString().replace(/[^0-9]/g, "");
var sevenDigitFormat = /^\(?([0-9]{3})[-. ]?([0-9]{4})$/;
var tenDigitFormat = /^\(?([0-9]{3})\)?[-. ]?([0-9]{3})[-. ]?([0-9]{4})$/;
var extDigitFormat = /^\(?([0-9]{3})\)?[-. ]?([0-9]{3})[-. ]?([0-9]{4})?([0-9]*)$/;
if (tenDigitFormat.test(scrubbed)) {
return scrubbed.replace(tenDigitFormat, "($1) $2-$3");
}
else if (sevenDigitFormat.test(scrubbed)) {
return scrubbed.replace(sevenDigitFormat, "$1-$2");
}
else if (extDigitFormat.test(scrubbed)) {
return scrubbed.replace(extDigitFormat, "($1) $2-$3 x$4");
}
return inputValue;
}