我正在使用 intl-tel-input angular 4 来验证电话号码,当我添加它时,它会显示带有电话号码的国家代码,但如果输入错误的电话,它不会显示错误消息。为此,我正在使用此代码:-
<ngx-intl-tel-input name="phone" id ="phone" [(value)]="model.phone" required="required" [preferredCountries]="preferredCountries" ></ngx-intl-tel-input>
这是我的 html 文件代码,这里是我的 component.ts 文件代码:-
$("#phone").intlTelInput({
utilsScript: "../../build/js/utils.js"
});
当我添加它时,它显示错误消息:-
"core.es5.js:1084 ERROR Error: Uncaught (in promise): TypeError: $(...).intlTelInput is not a function"
为此,我尝试了此代码,但没有运气:-
https://jsbin.com/yacokiyece/edit?html,css,js,output
这是我遵循的 git 代码:- https://github.com/webcat12345/ngx-intl-tel-input