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.
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743668223a4487339.html
评论列表(0条)