在IE和Firefox中运行$ .ajax的问题

时间:2013-02-10 21:28:56

标签: javascript jquery jquery-ui internet-explorer jquery-ui-dialog

嘿伙计我正在使用chrome并使用JQuery UI开发了一个开窗器,它的工作非常完美。在IE和Firefox中,我注意到它不会工作,我在IE中进行了调试,它说

 `SCRIPT1028: Expected identifier, string or number`

function sendUserfNotes()
    {

        $.ajax({
        type: "POST",
        dataType: "json",
        url: '/pcg/popups/getNotes.php',
        data:
        {
            'nameNotes': notes_name.text(),

        },<!-- gave me the error right here?

        success: function(response) {
            $('#notes_msg').text(response.the_notes);
        }
    });

不知道为什么,但这是我的脚本:

$(document).ready(function () { // this right here will wait to see if the 'access notes is clicked, if so then it will get te value of username and send it to run()
    $(".NotesAccessor").click(function () {
        notes_name = $(this).parent().parent().find(".user_table");

      run();
    });

    });
function run(){ // defines the place to get the notes, goes to showURL...() to open the JQuery dialog and than senduse....() to display them in the dialog.  
    var url = '/pcg/popups/grabnotes.php';

    showUrlInDialog(url);
    sendUserfNotes();


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

        $.ajax({
        type: "POST",
        dataType: "json",
        url: '/pcg/popups/getNotes.php',
        data:
        {
            'nameNotes': notes_name.text(),

        },
        success: function(response) {
            $('#notes_msg').text(response.the_notes);
        }
    });

    }
    function getNewnotes(){
        new_notes = $('#notes_msg').val();
        update(new_notes);  
    }
    // if user updates notes
    function update(new_notes)
    {

            $.ajax({
        type: "POST",
        //dataType: "json",
        url: '/pcg/popups/updateNotes.php',
        data:
        {
            'nameNotes': notes_name.text(),
            'newNotes': new_notes,  
        },
        success: function(response) {
            alert("Notes Updated.");
            var i;
             $("#dialog-container").effect( 'fade', 500 );

            i = setInterval(function(){
             $("#dialog-container").dialog( 'close' );
            clearInterval(i);
            }, 500);

            }
    });

    }
    /******is user closes notes ******/
    function closeNotes()
    {
        var i;
         $("#dialog-container").effect( 'fade', 500 );

        i = setInterval(function(){
         $("#dialog-container").dialog( 'close' );
        clearInterval(i);
        }, 500);

    }

如果你能帮我一把,我会很感激:)不确定什么是错的,为什么它只适用于Chrome?如果您需要什么,请告诉我。

大卫

1 个答案:

答案 0 :(得分:0)

data: { 'nameNotes': notes_name.text(), },

这是一个奇怪的问题,但在text()之后删除逗号。这应该会有所帮助。