转换标题元素的文本

发布于 2024-11-14 02:59:15 字数 120 浏览 3 评论 0原文

是否可以“反映”浏览器窗口的标题文本?例如,单词“mirror”将变为“rorrim”,其中字符也面向相反方向。如果它不能在每个浏览器中工作也没关系,但要求用户安装某些东西并不是一个选择。

谢谢!

Is it possible to "reflect" the title text of the browser window? For example the word "mirror" would become "rorrim" with the characters also facing the opposite direction. It's OK if it doesn't work in every browser, but asking the user to install something isn't an option.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

极度宠爱 2024-11-21 02:59:15

如果您不反对纯 JavaScript,您可以将其添加到 title 标记之后。确保为 title 提供标题的 id

<script type="text/JavaScript">
    var title = document.getElementById("title").innerHTML;
    var titlechange = title.split('').reverse().join('');
    var title = document.getElementById("title").innerHTML = titlechange;
</script>

If you are not opposed to plain javascript, you could add this after the title tag. Make sure to give the title an id of title.

<script type="text/JavaScript">
    var title = document.getElementById("title").innerHTML;
    var titlechange = title.split('').reverse().join('');
    var title = document.getElementById("title").innerHTML = titlechange;
</script>
慈悲佛祖 2024-11-21 02:59:15

下面使用输入字段中的值并输出与其反转值连接的值。

String.prototype.reverse = function() {
    return this.split('').reverse().join('');
};

$("#wintitle").keyup(function(){
    var newtitle = $(this).val() + ' - ' + $(this).val().reverse();
    document.title = newtitle;
    $("#output span").html(document.title);
});

演示:jsfiddle.net/42umy (编辑)

The following uses the value from an input field and outputs it's value concatenated with it's value reversed.

String.prototype.reverse = function() {
    return this.split('').reverse().join('');
};

$("#wintitle").keyup(function(){
    var newtitle = $(this).val() + ' - ' + $(this).val().reverse();
    document.title = newtitle;
    $("#output span").html(document.title);
});

Demo: jsfiddle.net/42umy (edit)

心凉 2024-11-21 02:59:15

标题文本不能以任何方式设置样式。然而,在 IE9 中,有一个名为 classic shell 的插件
但它不会做你所要求的事情。

The title text cannot be styled in any way. In IE9, however there is a plugin called classic shell
It wont do what you are asking though.

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