通过 javascript 设置漂亮的打印标签
我试图使用 Pretty.js 来美化 CODE 标签中的代码,使用这个 js:
onload_functions.push(function() {
var node_list=document.getElementsByTagName('code');
for (i=0; i < node_list.length; i++) {
node_list[i].setAttribute('class','prettyprint');
}
prettyPrint();
});
这对于 Firefox 来说效果很好:),但 IE 没有。 我究竟做错了什么?
您可以在 http://sam.xnet.tk 看到它(非)工作
Im trying to get pretty.js to prettify code in CODE tags, using this js:
onload_functions.push(function() {
var node_list=document.getElementsByTagName('code');
for (i=0; i < node_list.length; i++) {
node_list[i].setAttribute('class','prettyprint');
}
prettyPrint();
});
This works fine for Firefox :) but IE's having none of it.
What am i doing wrong?
You can see it (non)working at http://sam.xnet.tk
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果代码元素有任何其他类名,这将在 IE 中产生混乱。 使用(IE 特定的)JavaScript 属性
className
可能会起作用。我对你们网站上的
onload
功能发表了评论。顺便说一句,嵌入 JavaScript 的方式会破坏未来兼容标准的浏览器,请参阅 您网站的 W3C 验证器输出。 最简单的解决方案是将代码移至外部文件。
If the code element has any other class names, this will yield chaos in IE. Using the (IE-specific) JavaScript property
className
will likely work.I commented on the
onload
function on your website.Btw, the way you embed the JavaScript it will break future standard-compatible browsers, see the W3C validator's output for your site. The easiest solution is to move the code to an external file.
这将非常简单,并且可以在所有使用 jQuery 的浏览器中工作。
编辑:它在 IE 中不起作用的原因是因为 IE 使用“className”而不是“class”只是为了让生活变得痛苦。
This would be far simple and work in all browsers with jQuery.
EDIT: The reason it's not working in IE is because IE uses 'className' instead of 'class' just to make life miserable.