【web前端】15.input输入框的一些问题

一.input输入框怎么禁止粘贴

 

二.IOS上input只读模式下点击有反应的解决方法

      

安卓下只用readonly = 'readonly'就行,但是ios下还要加unselectable = 'on' onfocus = 'this.blur()'

三.input框调用数字键盘

type="number"

四.input默认显示文字用placeholder

placeholder="请输入11位手机号"

placeholder 样式

.number-input::-webkit-input-placeholder{
    font-size:34px;
    font-family:PingFangSC-Regular,PingFang SC;
    font-weight:400;
    color:rgba(153, 153, 153, 1);
    line-height:48px; 
}

五.文本框输入手机号限制,只能输入不超过11位的数字,不能输入其他字符,移动端输入手机号文本框获取焦点后弹出数字键盘,而非拼音键盘,设置type="tel",是为了移动端弹出数字键。

请在下方输入预约手机号

 

你可能感兴趣的:(【Web前端】)