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.
私はこのような機能を持っています
var json = "location.cities"; $(<--here-->).each(function() { ..... });
それで
変数 " json " を角かっこの中に入れて、関数を起動する必要があります。とにかくそれを行うことはありますか?これに関して誰か助けてください。私は本当にここで立ち往生しています。
次のものを試すことができます
あなたは好き"location.cities" だった.それは今文字列になります
"location.cities"
$(location.cities).each(function() { ..... });
また
var json = location.cities;
$(json).each(function() { ..... });