Last active
August 6, 2024 07:37
-
-
Save Maxim-Kolmogorov/d867767c976532fea60ee4a1abd725e7 to your computer and use it in GitHub Desktop.
Phone mask with Vue.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Vue from "vue" | |
Vue.directive('phone', { | |
bind(el) { | |
el.oninput = function(e) { | |
if (!e.isTrusted) { | |
return | |
} | |
const x = this.value.replace(/\D/g, '').match(/(\d{0,1})(\d{0,3})(\d{0,3})(\d{0,4})/) | |
if (!x[2] && x[1] !== '') { | |
this.value = x[1] === '8' ? x[1] : '8' + x[1] | |
} else { | |
this.value = !x[3] ? x[1] + x[2] : x[1] + '(' + x[2] + ') ' + x[3] + (x[4] ? '-' + x[4] : '') | |
} | |
} | |
}, | |
}) |
автозаполнение от браузеров не вызывает onpaste() Я на onchange() повесил, но подозреваю можно все и через oninput() слушать
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Чтобы первый символ ввода, отличный от 7 и 8, сразу попадал в input, для маски
+7 (999) 999-99-99
вместоx[1] = '+7'
можно вставить: