我的页面中有很多下拉列表,我为其中三个编写了Javascript。这是我的javascript;
<script language="JavaScript">
function getSelectValue() {
var selectedValue = document.getElementById("egitimkonusu").value;
window.location.href = "egitim?deger=" + selectedValue;
return selectedValue;
}
function getSelectValue2() {
var selectedValue2 = document.getElementById("eklenecek").value;
window.location.href = "/egitim?deger="+ getSelectValue() +"&"+"?eklenecekid=" + selectedValue2;
}
function getSelectValue3() {
var selectedValue3=document.getElementById("secili").value;
window.location.href="/egitim?deger="+ getSelectValue() +"&"+"?silinecekid="+selectedValue3;
}
</script>
我的问题是当我点击dropdownlist(secili,egitimkonusu,eklenecek)
中的任何选项时,其他下拉列表中的所选值都为空。我猜这个页面正在更新。当我点击dropdownlist
中的某个值时,我不希望页面续订。谁能帮我?我刚开始学习。
谢谢你的帮助
答案 0 :(得分:0)
window.location.href = "egitim?deger=" + selectedValue;
根据我的说法,这条线很乱。每次都必须刷新页面。
您不想为所选值设置id
或class
吗?
这样的事情?
$('#displayid').append('<option value='+abx+'>'+xyz+'</option>');