0

嘿伙计们所以我有以下内容:

$(document).ready(function () {
    $(".NotesAccessor").click(function () {
       var notes_name = $(this).parent().prev().prev().prev().prev().prev().prev().prev().prev().html();
      run();
    });
});

当有人单击该属性时,这将获得一个名称,然后从那里转到打开并启动对话框的此函数:

function run(){
    var url = '/pcg/popups/grabnotes.php';
    showUrlInDialog(url);
}

function showUrlInDialog(url)
    {
      var tag = $("#dialog-container");
      $.ajax({
        url: url,
        success: function(data) {
          tag.html(data).dialog
          ({
              width: '100%',
                modal: true
          }).dialog('open');
        }
      });
    }


function update()
    {
        $.ajax({
        url: '/PCG/termsofservice/accepted.php',
        success: function() {
            $("#dialog-container").dialog( 'close' );

            }
          });

    }

function closeNotes()
    {
        $("#dialog-container").dialog( 'close' );
    }

那么将变量 notes_name 交给在 Jquery UI 中打开的文件中的 PHP 变量?还是我必须寄过去?我不确定该怎么做。

大卫

4

1 回答 1

0

jQuery的$.ajax()函数有一个传递数据的方法:

$.ajax({
  type: "POST",
  url: '/PCG/termsofservice/accepted.php',
  data: { /* data object goes here */ },
  success: function() {
      $("#dialog-container").dialog( 'close' );
  },
  dataType: dataType
});

文档:http ://api.jquery.com/jQuery.ajax/

于 2013-02-10T01:32:12.583 回答