例如,想法是在每次迭代后动态更新标题 “文件签署1/6” “文件签署2/6” ...
目前jQuery函数是
$(document).ready(function() {
$(this).attr("title", eval("constLang." + "TASK_SIGN") + " " + current_task + "/" + total_tasks);
});
它在Mozilla和Google Chrome中运行良好,bot不会出现在IE11中
答案 0 :(得分:0)
只需按标记名称获取title
:
$(document).ready(function() {
$('title').text(eval("constLang." + "TASK_SIGN") + " " + current_task + "/" + total_tasks);
});