2014-10-17 129 views
-3

要緊類我體內從中我需要選擇班級hs-content-path-history-of-data-pagetopic2013選擇從字符串

<body class="blog-template hs-blog-id-1815512257 hs-blog-listing hs-content-path-history-of-data-pagetopic2013 hs-blog-name-history-of-data-page"></boby> 

var bodyClass = $('body').attr('class'); 
// select needfull class from var above 

if(selectedClass === 'hs-content-path-history-of-data-pagetopic2013'){ 
    // it works! 
} 

一些類如何可以選擇從體類hs-content-path-history-of-data-pagetopic2013

+0

什麼是我們的實際需要? – 2014-10-17 08:05:13

+0

bodyClass returns me - 「blog-template hs-blog-id-1815512257 hs-blog-listing hs-content-path-history-of-data-pagetopic2013 hs-blog-name-history-of-data-page」。從這個字符串我需要選擇這個類「hs-content-path-history-of-data-pagetopic2013」​​ - 然後,當我得到它我需要比較它whith「hs-content-path-history-of-data -pagetopic2013「並在此之後執行操作 – Mongo 2014-10-17 08:08:16

回答

2

要檢查身體,或任何元素,具有一定的階級,您可以使用hasClass

if ($('body').hasClass('hs-content-path-history-of-data-pagetopic2013')) { 
    ... 
} 
+0

WOOOW,tnx adeneo,你一如既往偉大! – Mongo 2014-10-17 08:10:10

+0

不客氣! – adeneo 2014-10-17 08:13:11