Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はPHPを初めて使用します私がやりたいのは、JavascriptまたはJqueryを許可しない電話番号をマスク入力することだけです
$_SESSION["oh"]["phone"]=(empty($_SESSION["oh"]["phone"]))?$_COOKIE["phone"]:$_SESSION["oh"]["phone"];
ある種のパターンに従って電話をマスクし、検証します
$pattern = "/^([1]-)?[0-9]{3}-[0-9]{3}-[0-9]{4}$/i"
参照
AFAIK 、検証に役立つ jquery の mask() を使用しました
$("#phone").mask("(999) 999-9999");
それを使用するのは便利です