脚本中有错误吗?

function printPage(id) 

{

var html='<html><head><link href="css/styler.css" rel="stylesheet">';

html+= document.getElementById(id).innerHTML;

html+='</html>';

var printWin = window.open('','','left=0,top=0,width=1,height=1,toolbar=0,scrollbars=0,status =0');

printWin.document.write(html);

printWin.document.close();

printWin.focus();

printWin.print();

printWin.close();

}

你好,我有这个功能打印特定的div,我想链接到这个样式表,我有错误的地方。只链接此样式表工作,但是当我链接样式表脚本中有错误吗?

 <link href="css/calender.css" rel="stylesheet"> 

它显示什么,就好像文件不存在。 CSS文件在那里,我不知道为什么这不起作用。有人看到一个错误?

http://image.prntscr.com/image/e4615edd03274cc69e48e69172f9e431.png - 我的文件夹

(I'm从目录kalendar调用它)

只有一个css文件工作每隔CSS文件的行为就像它不存在。

回答:

你可以试试这个吗?

function printPage(id) 

{

var html='<html><head><link href="css/callender.css" rel="stylesheet"></head><body>';

html+= document.getElementById(id).innerHTML;

html+='</body></html>';

var printWin = window.open('','','left=0,top=0,width=1,height=1,toolbar=0,scrollbars=0,status =0');

printWin.document.write(html);

printWin.document.close();

printWin.focus();

printWin.print();

printWin.close();

}

BTW你的链接标签calender.css,而你的文件是callender.css(有2个l S)

以上是 脚本中有错误吗? 的全部内容, 来源链接: utcz.com/qa/264131.html

回到顶部