0
我試圖使用此JavaScript代碼爲用戶提供一條消息,當從下拉列表中選擇的項目包含「超低」但未起作用時。有人可以幫忙嗎?選定索引更改時的消息框
<script language="javascript" type="text/javascript">
var dropdown = document.getElementById("ddGlass");
dropdown.onchange = function (event) {
if (dropdown.str.indexOf("Ultra Low") > -1) {
alert("Glass Option is for Yuma Only")
}
}
</script>
我已經試過,現在又一次,但仍然沒有運氣。 – Masoud
在您的問題中發佈剩餘的html或者小提琴或代碼筆,其他的必須是錯誤的 – Wiebe
我用下面的代碼替換了整個東西,現在它可以工作。感謝大家。 ScriptManager.RegisterStartupScript(this,GetType(),「showalert」,「alert('Glass Option僅適用於Yuma');」,true); – Masoud