2016-09-08 19 views
0

ボタンをクリックすると、ユーザーがクリックすると、その上に検索フォームが表示されます。 フォームは、一番下のフッターに配置されます。クリックした要素の位置を取得する方法

ボタンの位置(絶対、左、上)を取得する必要があります。

これは私のhtmlエントリです:これは、ボタンの位置を与える

<div><button class="search-button" type="button">Search<button></div> 
+2

可能性のある重複した[クリックされた要素の位置を見つけるには?](http://stackoverflow.com/questions/3159301/how-to-find-out-position-of-clicked-element) –

答えて

0
$(function() { 
    $("#search-button").click(function() { 
     var $clicker = $(this); 
     var pos = $clicker.position(); 
     console.log(pos.top); 
     console.log(pos.left); 
    }); 
}); 
0

$(button).offset() 
関連する問題