我在html页面中使用输入类型文本。现在我想根据输入文本字段的宽度限制字符。我的输入字段宽度为400px,我想将字符数限制为字段宽度的95%。
使用maxlength属性限制最大字符数不适合我的工作流程。
请有人就此提出建议。
答案 0 :(得分:0)
$(function(){
var noc= .95*parseInt($("#txt").width())/parseInt($("#txt").css("font-size"));
$("#txt").attr("maxlength",parseInt(noc));
$("#maxlengthfound").text(parseInt(noc));
})

#txt{width:200px;font-size:10px}

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<input type="text" id='txt'/>
<label id='maxlengthfound'></label>
&#13;