代码之家  ›  专栏  ›  技术社区  ›  sepehr

jQuery中文本框值中的不可更改数字

  •  0
  • sepehr  · 技术社区  · 7 年前

    我想在我的输入元素中设置只读的“09”数字,我的意思是用户可以输入 input textbox 但不能编辑或删除其中的09,并且它是恒定的。以下代码仅适用于9位数字。有人能帮我解决这个问题吗?

    $('#PhoneField').keyup(function(e) {
      if ($(this).val()[0] != '9')
        $(this).val('9' + $(this).val());
    });
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
    <input type="text" id="PhoneField" class="phoneBox" maxlength="10" />
    2 回复  |  直到 7 年前
        1
  •  3
  •   Temani Afif    7 年前

    您可以这样做:

    $("#PhoneField").keydown(function(e) {
    var v=$(this).val();
    var f=this;
    setTimeout(function () {
        if(f.value.indexOf('09') !== 0) {
            $(f).val(v);
        } 
    }, 10);
    });
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
    <input type="text" id="PhoneField" value="09" class="phoneBox" maxlength="10"/>
        2
  •  0
  •   Mohammed Elhag    7 年前

    $('#PhoneField').keyup(function(e) {
      if (!$(this).val().startsWith("09","0")){
        $(this).val('09');}
    });
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
    <input type="text" id="PhoneField" value="09" class="phoneBox" maxlength="10" />