input相关

5.输入框限制字符,汉字15个,字母30个,最对输入30个字母

function inputLength(ele,num){
				var matchWords = 0;
				$(document).on('input propertychange',ele, function () {
						if(getLength($(this).val())<=num){
							matchWords = $(this).val().trim().length;
						}
						if(getLength($(this).val()) > num){
							$(this).val($(this).val().trim().substr(0,matchWords));
							return false;
						}
					});
				// 获得字符串实际长度,中文2,英文1 要获得长度的字符串
				function  getLength(str) {
					var realLength = 0, len = str.length, charCode = -1;
					for ( var i = 0; i < len; i++) {
						charCode = str.charCodeAt(i); //unicode编码
						if (charCode >= 0 && charCode <= 128) //数字、字母、特殊符号范围
							realLength += 1;
						else
							realLength += 2;
					}
					return realLength;
				}
			}
			inputLength("#userName",30);

unicode码参考表 https://www.cnblogs.com/lwqhp/p/3175817.html

4.输入框提示样式

//textarea
.huix-error-larea::-webkit-input-placeholder{font-size:16px;color: #9399A5;}
//input
::-webkit-input-placeholder { /* Chrome/Opera/Safari */ 
	color: red;
}
::-moz-placeholder { /* Firefox 19+ */  
	color: red;
}
:-ms-input-placeholder { /* IE 10+ */ 
 color: red;
}
:-moz-placeholder { /* Firefox 18- */ 
 color: red;
}

3.输入框数字监听

$(document).on("input propertychange",".huix-error-larea",function(){
		 var val=$(this).val();
		 var len=$(this).val().length;
		 var $dataPar=$(this).siblings(".error-form-need-data");
		 var $data=$dataPar.find(".input-data");
		 $data.text(len);

	 })

2.输入框只能输入正整数

  <input type="number" onKeyUp="this.value=this.value.replace(/[^\.\d]/g,'');this.value=this.value.replace('.','');" class="mark mark-num" /> 

onKeyUp=“this.value=this.value.replace(/[^.\d]/g,’’);this.value=this.value.replace(’.’,’’);”

1.输入框限制字符数

maxlength=“20”
3.输入框长度适应内容

/*input内容自适应宽度*/
function resize(obj){
 	$(".thank-award-name").text( $(obj).val());
  		 $(obj).css({'width':$(".thank-award-name").css('width'),});
  		 
   }
$("input").bind("input propertychange change",function(event){resize(this)})
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值