参考SOF 问题的答案,我想得到一个修复,以便在页面加载后(在用户的个人资料页面上)自动将选择的选项值传递给目标字段。
我也想知道在失去焦点之前触发文本字段上的更改方法。
$(function () {
$("#options").change(function () {
setTarget(); // Something has changed so lets rebuild the target
});
$("#options2").change(function () {
setTarget(); // Something has changed so lets rebuild the target
});
});
// Just get the values you want and update the target
function setTarget() {
var tmp = $("#options").val();
tmp += $("#options2").val();
$('#targetTextField').val(tmp);
}