How can I get the first word only out of a string with javascript? - Stack Overflow

I have the following:var html = document.documentElement;var class = html.className;This returns "

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
Add a ment  | 

5 Answers 5

Reset to default 9

You 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条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信