通过 javascript 设置漂亮的打印标签

发布于 2024-07-11 13:00:44 字数 451 浏览 8 评论 0原文

我试图使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

不爱素颜 2024-07-18 13:00:44

如果代码元素有任何其他类名,这将在 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.

几味少女 2024-07-18 13:00:44

这将非常简单,并且可以在所有使用 jQuery 的浏览器中工作。

$(function() {
    $('code').addClass('prettyprint');
    prettyPrint();
});

编辑:它在 IE 中不起作用的原因是因为 IE 使用“className”而不是“class”只是为了让生活变得痛苦。

This would be far simple and work in all browsers with jQuery.

$(function() {
    $('code').addClass('prettyprint');
    prettyPrint();
});

EDIT: The reason it's not working in IE is because IE uses 'className' instead of 'class' just to make life miserable.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文