我们想使用打印功能打印页面的内容。 单击打印功能后,默认情况下会打开一个弹出窗口,并在那里显示页面内容。我想在那里放一个Cannonical Meta Tag来表示搜索引擎它正在打印的页面的副本。我不知道如何在javascript的打印窗口中添加元标记,请帮忙。打印功能在
下面 function printLyrics(){
var prtContent = document.getElementById("view1");
var URL = document.URL;
console.log("URL " + URL);
var WinPrint = window.open(URL, 'Song Lyrics', 'top=0, left=0');
//$('head').append( '<meta name="description" content="this is new">' );
WinPrint.document.write("<div style='text-align: center; font-family: Georgia, Times, serif;font-size: 15px; line-height: 20px;'>" + prtContent.innerHTML + "</div><div style='font-size: 10px; text-align: center; margin-top: 200px; font-family: courier;'>The above text is privded by ss</div>");
WinPrint.document.close();
WinPrint.focus();
WinPrint.print();
WinPrint.close();
}