在输入类型编号中设置加号和整数值

时间:2018-10-16 05:32:38

标签: jquery html

我有输入类型编号,要将值设置为“ +31”或“ +32”。我使用的代码是:

   $(".flag_list_code").on('click', function() {//on click of a button which has class flag_list_code
       var countryCode = parseInt($(this).attr('rel')); // this returns 31,32 or numbers like this
       $('#inputPhone').val('+'+countryCode);//#inputPhone is id of input type number
   });


   <input type="number" id="inputPhone" class="phone_grat_input" >

但这是行不通的,当在输入类型数字字段中输入“ +31”然后行得通时,那么这也应该有办法吧?

先谢谢了。

0 个答案:

没有答案