我正在尝试使它根据您从下拉列表中选择的值,它下面的and属性将显示不同的内容。为什么不起作用?
Javascript:
<脚本>
函数listSelect()
{
var theList = document.getElementbyId(poi);
var theValue = theList.options [theList.selectedIndex] .value;
如果(theValue.includes('country'))
{
document.getElementbyId('poiImage')。src ='images / country.jpg';
document.getElementbyId('poiText')。innerHTML ='这是国家';
}
}
HTML: