2015-10-07 67 views
0

我想要使用jquery獲取.more類和.popovercontent div的寬度和高度。 popover-content類的寬度是動態的,它可以改變,因爲我從我的數據庫中獲取寬度。 Iam由此得到下面的分區。所以我想知道如何使用這個如何在jQuery中訪問此內部的寬度和高度

console.log(this); 

得到的寬度和高度它顯示如下的結果

<div id="picture1-more4" class="more more32 ltr-slide bgblack" style="top: 288px; left: 549px; z-index: 1; width: 32px; height: 32px;"> 
<div class="imgButton imgButtonDrag imgButtonDrag imgButtonDrag imgButtonDrag imgButtonDrag imgButtonDrag imgButtonDrag imgButtonDrag moreblack"></div> 
<div class="popover-inner red" style="margin-left:50px;"> 
<div class="arrow-right3" style="display: inline-block !important; border-left-width: 10px; border-left-style: solid; border-left-color: green; border-top-width: 10px; border-top-style: solid; border-top-color: transparent; border-bottom-width: 10px; border-bottom-style: solid; border-bottom-color: transparent; position: absolute; top: 50%;"></div> 
<h4 class="popover-title"><a href="" target="self">Garden</a></h4> 
<div class="popover-content" style="width:400px;"><p>To view details about either the Security or Maintenance section, click the heading or the arrow next to the heading to expand or collapse the section. If you dont want to see certain types of messages, you can choose to hide them from view. </p></div> 
</div></div> 

回答

1

那麼問題是,你需要指定什麼$(this)是。 正如你可以在我的小提琴中看到的,我循環遍歷每一個div,這意味着$(this)現在是它在那一刻循環的「div」。

http://jsfiddle.net/4oq27b3r/

但爲什麼要用$(this)如果你知道你想從寬度類? 正如其他人說,這是比較容易的方式:

$('.more').width() 
$('.popover-content').width() 
+0

感謝您的解決方案爲我工作。 –

0

如果你正在使用jQuery,你可以試試這個

VAR WIDTH = $( '試驗')寬度();

var height = $('。test')。height();

+0

我已經知道了這個標籤,但它不會工作,因爲我想用「這個」 –

0

您可以使用如下

$(this).width() 
$(this).height() 
+0

我想類的高度和寬度的寬度和高度和popover-content –

+0

請爲您的回答添加一些解釋 –

相關問題