Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
アップデート:
見つかった解決策:
isNaN(your_number)
ここで何を達成しようとしているのかよくわかりませんが、これを試すことができます:
var temp = new Array(); temp.push($('#myID').val());
ところで、メソッド val() を使用して選択すると、実際に選択されたオプションが取得されます。
あなたも試すことができます:
var temp = [$('#myID').val()];
これにより、変数 temp が [] に値を代入して配列として初期化されます。