私はjavascriptを初めて使用し、ビジュアライゼーションのコードをselection02の選択ボックスに入れようとしています。私の視覚化コード:
<script type="text/javascript" src="//ajax.googleapis.com/ajax/static/modules/gviz/1.0/chart.js"> {"dataSourceUrl":"//docs.google.com/spreadsheet/tq?key=0AihqKzH-MgAndERnaFVsYk1RLUM3S0pDSmNjcEQ4M1E&transpose=0&headers=0&range=A2%3AB13&gid=0&pub=1","options":{"vAxes":[{"useFormatFromData":true,"viewWindowMode":"pretty","viewWindow":{}},{"useFormatFromData":true,"viewWindowMode":"pretty","viewWindow":{}}],"booleanRole":"certainty","animation":{"duration":0},"useFirstColumnAsDomain":true,"hAxis":{"useFormatFromData":true,"viewWindowMode":"pretty","viewWindow":{}},"isStacked":false,"width":454,"height":285},"state":{},"chartType":"AreaChart","chartName":"\u0393\u03c1\u03ac\u03c6\u03b7\u03bc\u03b1 1"} </script>
これらは私の2つのリンクされた選択ボックスです。別のファイルからこのコードを取得しようとしましたが、問題が発生しました。また、最初の選択をするまでselectbox2を非表示にすることはできますか?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script type="text/javascript">
function allagi()
{
if (document.getElementById("selection01").selected==true)
{
}
else if (document.getElementById("selection02").selected==true)
{
}
else if (document.getElementById("selection03").selected==true)
{
}
else if (document.getElementById("selection04").selected==true)
{
}
}
function allagi2()
{
if (document.getElementById("select02").selected==true)
{
document.getElementById("selectbox01").disabled=false;
}
}
</script>
</head>
<body>
<div id="wrapper">
<div id="logo">
<select onchange="allagi2()">
<option id="select01" selected="true">Επιλέξτε</option>
<option id="select02">Τουρισμό</option>
<option id="select03">Προϋπολογισμό</option>
</select>
<select id="selectbox01" onchange="allagi()" disabled="true">
<option id="selection01">Selection01</option>
<option id="selection02">Selection02</option>
<option id="selection03">Selection03</option>
<option id="selection04">Selection04</option>
</select>
</div>
<div id="chart">
</div>
</div>
</body>
</html>
誰かが私を助けることができますか?