/** * 显示句子历史记录窗口 */ function chapter_dynamic_init() { $("body").append('
'); $("#chapter_dynamic_dlg").dialog({ autoOpen: false, width: 550, buttons: [ { text: "Close", click: function () { $(this).dialog("close"); }, }, ], }); } function chapter_dynamic_show(book,para,channel_id) { let imgUrl = location.host ; imgUrl = "/api/sentence/progress/daily/image?"; imgUrl += "channel="+channel_id; imgUrl += "&&book=" + book; imgUrl += "&from=" + para; imgUrl += "&view=palistrlen"; $("#chapter_dynamic_dlg").html(""); $("#chapter_dynamic_dlg").dialog("open"); }