java脚本中首字母大写
我知道以前已经回答过这个问题,但我是新手,我无法让它在我的情况下工作。基本上,我有一些页面调用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将字符串的第一个字母大写,如下所示:
或者:
假设您的
document.write
调用包含您要大写的字符串:You can capitalise the first letter of a string like this:
Alternatively:
Assuming that your
document.write
call contains the string you want to capitalise:如果您手头有 LoDash,也可以使用 _.capitalize 来实现
If you have LoDash on hand, this can also be achieved using _.capitalize