java脚本中首字母大写

发布于 2024-11-18 17:37:12 字数 330 浏览 3 评论 0原文

我知道以前已经回答过这个问题,但我是新手,我无法让它在我的情况下工作。基本上,我有一些页面调用 URL 并在页面上显示其中的一部分。我希望显示的单词的第一个字母自动大写。

这是我正在使用的示例:

<script>
var str = (window.location.pathname);
var str2 = "/seedling/";
document.write(str.substr(str2.length,(str.length - str2.length - 1 ) ) );
</script>

非常感谢您的帮助,非常感谢!

I know this has been answered before, but I'm a newb and I can't get it to work in my situation. Basically, I have pages that call the URL and display part of them on the page. I am hoping to have the first letter of the displayed word capitalize automatically.

This is an example of what i'm using:

<script>
var str = (window.location.pathname);
var str2 = "/seedling/";
document.write(str.substr(str2.length,(str.length - str2.length - 1 ) ) );
</script>

Thanks so much for your help, it is much appreciated!!

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

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

发布评论

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

评论(2

记忆消瘦 2024-11-25 17:37:12

您可以将字符串的第一个字母大写,如下所示:

var capitalised = yourString.charAt(0).toUpperCase() + yourString.slice(1);

或者:

var capitalised = yourString.charAt(0).toUpperCase() + yourString.substring(1);

假设您的 document.write 调用包含您要大写的字符串:

var yourString = str.substr(str2.length,(str.length - str2.length - 1 ) );
var capitalised = yourString.charAt(0).toUpperCase() + yourString.slice(1);

You can capitalise the first letter of a string like this:

var capitalised = yourString.charAt(0).toUpperCase() + yourString.slice(1);

Alternatively:

var capitalised = yourString.charAt(0).toUpperCase() + yourString.substring(1);

Assuming that your document.write call contains the string you want to capitalise:

var yourString = str.substr(str2.length,(str.length - str2.length - 1 ) );
var capitalised = yourString.charAt(0).toUpperCase() + yourString.slice(1);
帥小哥 2024-11-25 17:37:12

如果您手头有 LoDash,也可以使用 _.capitalize 来实现

_.capitalize('FRED');
// => 'Fred'

If you have LoDash on hand, this can also be achieved using _.capitalize

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