Phonegap json '\r\n' 来自服务器的数据

Phonegap json '\r\n' coming data from server

我正在使用 phonegap 开发一个应用程序,我正在使用 php 代码从 MySql table 获取一些数据..但是当我显示结果文本时..有'\n\r' 在文本中......如何删除它并显示结果......我在下面给出我的javascript代码

var jsonData;
$.ajax({ 
    type: 'GET', 
    url: 'http://mybirthsecrets.com/app/get_pday1_number_phonegap.php', 
    data: {pone: dayb}, 
    dataType: 'html',
    success: function (result) { 
    jsonData = result;
        alert(jsonData);

    }
});

@Jocheved 很简单..

 jsonData = result;

代替这一行给出下面的行

 jsonData=eval('(' + result + ')');