我有一个变量:
var items = $('.ui-selected', this).map(function() {
return $(this).index();
}).get();
那给了我一系列动态数字。例如:
[0]
[0, 1]
所以我想将该数组传递给PHP。在那里,我想将这些数字用于INSERT INTO
这些特定列。所以当我在数组中得到0和1时,我想在第1列和第2列中写入一个值。为了传递该值,我尝试了这个:
//JS
items = items.join(',')
$.post('/save.php', { 'items': items })
//PHP
$items = $_POST['items'];
$items = explode(',', $items);
但MySQL列的索引是否与JS相同?第一列索引是0?