0
基本的には、関数の引数として値を渡してから、別の関数で同じ値を使用したい変数。問題は、最初の関数の中で変数を定義すると、その関数内でしか変数にアクセスできないということです。私は何をしますか?JS - 別の関数で使用する変数に関数の引数を格納する
<html>
<body>
<script>
function showUser(selection) {
var selectedOption = selection;//THIS IS THE VARIABLE I WANT TO ACCESS IN ANOTHER FUNCTION
//Some code
}
function saveTime(solvedTime) {
//This is where I am using the variable
xmlhttp.open("GET","savetimes.php?q="+selectedOption+"&time="+solvedTime, true);
xmlhttp.send();
}
</script>
<form id="session">
\t <select name="sessions" onchange="showUser(this.value)">
\t <option value="1">Session 1</option>
\t <option value="2">Session 2</option>
\t </select>
\t </form>
<br>
\t <div id="timesList">
\t </div>
</body>
</html>
、それはグローバル、それを渡してください... –