如何根据在另一个文本框(txtInterest%
)中输入/更改的值更新一个文本框(txtAmt
)中的值?
答案 0 :(得分:14)
使用jQuery的change方法进行更新。使用您的示例:
$('#txtAmt').change(function() {
//get txtAmt value
var txtAmtval = $('#txtAmt').val();
//change txtInterest% value
$('#txtInterest%').val(txtAmtval);
});
答案 1 :(得分:4)
这可以在您的网页上假设txtAmt
和txtInterest%
id
为止:
$(function() {
$('#txtAmt').change(function() {
$('#txtInterest%').val(this.value);
});
});
请参阅jQuery的change
事件处理程序。
答案 2 :(得分:4)
实现此
的另一种方法$(document).ready(function(){
$('#txtAmt').keyup(function (){
$('#txtInterest%').val($('#txtAmt').val())
});
});