我正在编写一个代码,它显示与文本文件中指定的颜色匹配的彩色按钮。但是我面临一个问题,即只有第一个“if”在与条目匹配之后执行,而最后一个中指定的“if”条件根本没有被检查。就像,如果指定的颜色是红色,蓝色。那么输出只显示红色按钮。
这是我的代码
if(R)
{
document.write('<button style="background-color:red;width:100;height:100" </button>');
}
else
if(V)
{
document.write('<button style="background-color:violet;width:100;height:100"
</button>'); }
else
if(I)
{
document.write('<button style="background-color:indigo;width:100;height:100"
</button>');
}
else
if(B)
{
document.write('<button style="background-color:blue;width:100;height:100"
</button>');
}
else
if(G)
{
document.write('<button style="background-color:green;width:100;height:100"
</button>');
}
else
if(Y)
{
document.write('<button style="background-color:yellow;width:100;height:100"
</button>');
}
else
if(O)
{
document.write('<button style="background-color:orange;width:100;height:100"
</button>');
}