- 主题:js问题请教
代码如下所示。请帮忙看看,谢谢!
function addYear()
{
var state = document.getElementById("state");
var year = document.getElementById("year");
var stateYear = document.getElementById("stateYear");
alert(state.options[state.selectedIndex].value);
if(state.options[state.selectedIndex].value == "执行完")
{
//state.options[state.selectedIndex].value的值为执行完时也进不了该分支
alert("finished");
year.style.display = "";
stateYear.style.display = "";
}
else
{
alert("no finished");
year.style.display = "none";
stateYear.style.display = "none";
}
}
--
FROM 180.168.3.*
这段代码应该是没有问题的。
用firebug看看问题应该不在这里
【 在 IOPoPo (forever) 的大作中提到: 】
: 代码如下所示。请帮忙看看,谢谢!
: function addYear()
: {
: ...................
--
FROM 114.249.216.*
代码是放在js文件里面的吗?可能编码不一致
【 在 IOPoPo (forever) 的大作中提到: 】
: 代码如下所示。请帮忙看看,谢谢!
: function addYear()
: {
: ...................
--
FROM 64.104.125.*
是编码原因,谢谢~
【 在 liangqing (^-^) 的大作中提到: 】
: 代码是放在js文件里面的吗?可能编码不一致
--
FROM 180.168.3.*