我已经坚持了好几天了,所以我非常感谢你们可以提供的任何帮助。提前致谢!!这是我的问题:
我有一个选择列表:
<select id="bandCategories">
<option>(Choose a category)</option>
<option>Djent</option>
<option>Brutal Death Metal</option>
<option>Deathcore</option>
<option>Hardcore</option>
<option>Slam</option>
<option>Verb the Noun</option>
</select>
以下是与它们相关的变量:
var bandCategories = document.getElementById("bandCategories");
var chooseCategoryStr = bandCategories.options[0].text;
var selectedCategory = bandCategories.options[bandCategories.selectedIndex].text;
我有一个函数bgChange()
,我想在每次所选选项更改时运行,除非选择了默认的“(选择一个类别)”。我尝试了以下方法,但无济于事:
if(selectedCategory != chooseCategoryStr){
selectedCategory.onchange = bgChange(selectedCategory);
};
帮助?再次感谢 :)