$(document).ready(function () { myPlaylist = new jPlayerPlaylist({ jPlayer: "#jquery_jplayer_N", cssSelectorAncestor: "#jp_container_N" }, [ ], { playlistOptions: { enableRemoveControls: true }, swfPath: "js", supplied: "mp3", smoothPlayBar: true, keyEnabled: true, audioFullScreen: true }); myPlaylist.option("autoPlay", true); }); function listPlayCall(musicId) { GetLrc(musicId) } function GetLrc(musicId) { $.ajax({ url: 'lrc?type=get&musicId=' + musicId, success: function (html) { $("#divLrc").css("display", "").html(html); }, error: function (xhr) { // alert("请求出错(请检查相关度网络状况.)"); } }); }