admin管理员组文章数量:1341464
I have the following:
var html = document.documentElement;
var class = html.className;
This returns "black ng-scope";
How can I make it so that class just returns the first word?
I have the following:
var html = document.documentElement;
var class = html.className;
This returns "black ng-scope";
How can I make it so that class just returns the first word?
Share asked Oct 21, 2013 at 19:47 Samantha J T StarSamantha J T Star 32.9k89 gold badges257 silver badges441 bronze badges 1- Already asked : stackoverflow./q/3203966/1636522 – user1636522 Commented Oct 21, 2013 at 19:58
5 Answers
Reset to default 9You can use
var firstClass = html.className.split(' ')[0]
An alternative way of getting the separated class names is by using classList
. see browser support and documentation
> "hey there".split(" ")[0]
"hey"
var classes = class.split(" "); // Returns an array
var firstclass = classes[0];
Another idea is using regular expressions if you could have other word boundaries than space.
var reg = /(.+?)(?:\s|$)/,
match = html.className.match(reg);
if (match) {
match[1]; // Your match
}
This has the added benefit of matching more than a single space.
EDIT: If you are using this to strictly get all classes of an HTML element and you are targeting sufficiently new browsers use classList
like Jakob W suggested.
本文标签: How can I get the first word only out of a string with javascriptStack Overflow
版权声明:本文标题:How can I get the first word only out of a string with javascript? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743668222a2519093.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论