-2
參考SOF's Question的回答,我想要修復在頁面加載後(在用戶的配置文件頁面上)自動選擇選項值傳遞到目標字段的問題。傳遞多個字段並顯示在文本字段上
我也有興趣知道在文本字段上的更改方法被觸發之前,它失去了焦點。
$(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);
}
在哪裏的問題?問題是什麼? – undefined
你的意思是'$(document).ready(setTarget)'?你可以使用'blur'事件,對嗎? – EricG
要回答我可以推測的唯一問題:'$(「#options3」)。keyup();' – bobthyasian