什么是最佳代码,用于在结束文本字段中自动添加文本。我已经有了一个代码但是当我在其中添加任何内容时它会删除$符号。 这是以前的代码:
$(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>
答案 0 :(得分:1)
请检查以下代码
$(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;