昨天我有question(已回答),今天我必须再扩大一点。我需要传递两个或多个变量,但是找不到正确的语法:
更新的工作代码:

$(document).ready(function() {
   $('.infor').click(function () {

    var datasend = $(this).html();
    var datasendmore = $(this).next().html();

      $.ajax({
           type: 'POST',
           url: 'http://domain.com/page.php',
           data: {im_id:datasend, yt_id:datasendmore},
           success: function(data){
              $('#test_holder').html(data);
              }
           });
    });
});


谢谢。

最佳答案

采用:

data: {im_id:datasend,yt_id:datasendmore}

10-07 14:39