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.
我正在尝试将数组分解为单个变量,然后我可以使用$.ajax.
$.ajax
我的数组如下:
var arr = [“11th”,“2 月”,“2013”] // 我怎样才能遍历这个数组并获取每个元素并将其放入其单独的变量中?
您可以直接使用您的数组来发布数据
当您在 ajax 中发布您的帖子时,您可以发送不同的 var 等,分别发送 arr[0]、arr[1] 和 arr[2]。您可以通过在您的 ajax 帖子的配置中写入以下内容来做到这一点:
$.ajax({ ..your config.., data: { day: arr[0], month: arr[1], year: arr[2] }, ...your config... });