web-dev-qa-db-ja.com

国のダイヤルコードをintlTelInputの括弧内に入れる方法

私は自分のサイトでintlTelInputを使用しています。角かっこを使用してダイヤルコードを区切るにはどうすればよいですか。例:このプラグインのデフォルト出力は+ 1202someNumberで、(+ 1)202someNumが必要ですか?

3
Pawel Novikov

こちらのドキュメントフォームに基づいています- https://github.com/jackocnr/intl-tel-input -次のようなものが必要になります:

var intlNumber = $("#phone").intlTelInput("getNumber"); // get full number eg +17024181234
var countryData = $("#phone").intlTelInput("getSelectedCountryData"); // get country data as obj 

 var countryCode = countryData.dialCode; // using updated doc, code has been replaced with dialCode
countryCode = "+" + countryCode; // convert 1 to +1

var newNo = intlNumber.replace(countryCode, "(" + coountryCode+ ")" ); // final version
5
Manuel Cheța

このコードを使用して、電話番号から国コードを取得します。

var getCode = telInput.intlTelInput('getSelectedCountryData').dialCode;を使用できます

デモは次のとおりです。 https://output.jsbin.com/cuvoqagot

https://jsbin.com/cuvoqagotu/edit?html,css,js

HTML:

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
  <script type="text/javascript" src="//code.jquery.com/jquery-2.1.3.js"></script>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/6.4.1/css/intlTelInput.css">
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/6.4.1/js/intlTelInput.min.js"></script>
<style>
 .hide {
    display: none;
 }
</style>
</head>
<body>
<input id="phone" type="tel">
<span id="valid-msg" class="hide">? Valid</span>
<span id="error-msg" class="hide">Invalid number</span>
</body>
</html>

JS:

var telInput = $("#phone"),
  errorMsg = $("#error-msg"),
  validMsg = $("#valid-msg");

// initialise plugin
telInput.intlTelInput({
utilsScript:"https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/11.0.4/js/utils.js"
});

var reset = function() {
  telInput.removeClass("error");
  errorMsg.addClass("hide");
  validMsg.addClass("hide");
};

// on blur: validate
telInput.blur(function() {
  reset();
  if ($.trim(telInput.val())) {
    if (telInput.intlTelInput("isValidNumber")) {
      validMsg.removeClass("hide");
      /* get code here*/
      var getCode = telInput.intlTelInput('getSelectedCountryData').dialCode;
      alert(getCode);
    } else {
      telInput.addClass("error");
      errorMsg.removeClass("hide");
    }
  }
});

// on keyup / change flag: reset
telInput.on("keyup change", reset);
1
Chandra Kumar

これはあなたに国コードを与えます

例:

$("#your input box id").intlTelInput("getSelectedCountryData")

// this give you object where dialCode property has country code,like below 

$("#ContactpermanentNumber").intlTelInput("getSelectedCountryData").dialCode
0
ravi kumar

国の電話コードを入力に直接追加するのではなく、ユーザーがフォームを送信するときに添付するか、別の非表示の入力に保存してサーバー側に添付します。

https://intl-tel-input.com/node_modules/intl-tel-input/examples/gen/hidden-input.html?phone=32445&phone-full=%2B132445

また、ユーザーに表示して、ユーザーが入力するときに入力する必要がないことを理解できるようにすることもできます。

https://intl-tel-input.com/node_modules/intl-tel-input/examples/gen/national-mode.html

0
Roy Shoa