jquery中的偏移右下角

时间:2016-02-11 07:11:22

标签: javascript jquery html positioning offset

以下代码来自w3schools。

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $("button").click(function(){
        var x = $("p").offset();
        alert("Top: " + x.top + " Left: " + x.left);
    });
});
</script>
</head>
<body>

<p>This is a paragraph.</p>

<button>Return the offset coordinates of the p element</button>

</body>
</html>

可以使用jquery获得偏移右移和偏移底部吗?

链接:

https://jsfiddle.net/0hhxdbk5/1/

1 个答案:

答案 0 :(得分:1)

var right = ($(window).width() - ($element.offset().left + $element.outerWidth()));

var bottom = $(window).height() - top - link.height();

这应该这样做。