我有输入类型编号,要将值设置为“ +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”然后行得通时,那么这也应该有办法吧?
先谢谢了。