最后在文本字段中添加自动文本

时间:2016-02-13 06:03:34

标签: php

什么是最佳代码,用于在结束文本字段中自动添加文本。我已经有了一个代码但是当我在其中添加任何内容时它会删除$符号。 这是以前的代码:

$(document).ready(function(){
  $("#price").on("keyUp",function(index,there){
    $(there).val(
      $(there).val().replace("$","") + "$"
    );
  });
});
HTML中的

<input id="input_B" class="rate" value="$" type="text" disabled>

1 个答案:

答案 0 :(得分:1)

请检查以下代码

&#13;
&#13;
$(document).ready(function(){
  $( "#price" ).keyup(function() {
    $("#input_B").val("$ "+ $("#price").val());
  });
});
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<input id="input_B" class="rate" value="$" type="text" disabled>
<input id="price" type="text" placeholder="Type Here" />
&#13;
&#13;
&#13;