无法获取txt文件输出到屏幕jquery

时间:2014-07-21 04:08:17

标签: jquery html5

我得到了其他所有工作。只是有.txt文件的问题。它只显示文档路径。不显示实际文件。

function callMeta() {

    var songName = $(nowPlaying).attr('data-songTitle');
    $('#songTitle').html(songName);
    var artistName = $(nowPlaying).attr('data-songArtist');
    $('#songArtist').html(artistName);
    var aBio = $(nowPlaying).attr('data-artistBio');
    $('.artistBio').html(aBio);
    var aCover = $(nowPlaying).attr('data-albumCover');
    $('img.albumCover').attr('src', aCover);
}

        错误,您的浏览器不支持HTML音频标记!     

1 个答案:

答案 0 :(得分:0)

使用 .load() 加载文件内容。 .html()使用传递的参数修改元素的内部html。

var aBio = $(nowPlaying).attr('data-artistBio');
$('.artistBio').load(aBio);

您还可以使用 ajax to load file contents