如何使输入值永久化?我的意思是用户可以删除/更改它。
<!DOCTYPE>
<HTML>
<span>Mobile Number(Required)</span>
<input type ="integer" name="contact" id ="contact" value="+63" maxlength="13"/>
</HTML>
请多多帮助
答案 0 :(得分:0)
你可以使用javascript:
<强> SEE FIDDLE DEMO 强>
$('input.number').keyup(function(){
if (
($(this).val().length > 0) && ($(this).val().substr(0,3) != '+63')
|| ($(this).val() == '')
){
$(this).val('+63');
}
});
HTML:
<span>Mobile Number(Required)</span>
<input type ="integer" class="number" name="contact" id ="contact" value="+63" maxlength="13"/>