gpt4 book ai didi

javascript - 固定位置的顶部和左侧值在各种浏览器中发生变化

转载 作者:行者123 更新时间:2023-11-29 14:52:25 33 4
gpt4 key购买 nike

我在我的 Web 应用程序的页面中发现了鼠标位置的奇怪问题。我认为页面上特定元素的位置将是相同的,而不管它在哪个浏览器中呈现。我希望使用来自客户端的位置值以及在服务器上执行的一些屏幕捕获功能。

然而,我看到的是,每次我选择页面的一部分时,顶部和左侧位置都会相对于浏览器发生变化。我已经使用几个 JavaScript 属性测试了浏览器的顶部和左侧,但是固定位置的左侧和顶部对于不同的浏览器似乎有所不同(几个像素的差异)。

// Detect if the browser is IE or not.
// If it is not IE, we assume that the browser is NS.
var IE = document.all ? true : false;

// If NS -- that is, !IE -- then set up for mouse capture
if (!IE) document.captureEvents(Event.MOUSEMOVE);

// Set-up to use getMouseXY function onMouseMove
document.onmousemove = getMouseXY;

// Temporary variables to hold mouse x-y pos.s
var tempX = 0;
var tempY = 0;

// Main function to retrieve mouse x-y pos.s

function getMouseXY(e) {
if (!e) e = window.event;
if (e.pageX || e.pageY) {
tempX = e.pageX;
tempY = e.pageY;
} else if (e.clientX || e.clientY) {
tempX = e.clientX + document.body.scrollLeft + document.documentElement.scrollLeft;
tempY = e.clientY + document.body.scrollTop + document.documentElement.scrollTop;
}
// catch possible negative values in NS4
if (tempX < 0) {
tempX = 0;
}
if (tempY < 0) {
tempY = 0;
}
// show the position values in the form named Show
// in the text fields named MouseX and MouseY

document.Show.clientX.value = e.clientX;
document.Show.clientY.value = e.clientY;
document.Show.pageX.value = e.pageX;
document.Show.pageY.value = e.pageY;
document.Show.scrollLeft.value = document.body.scrollLeft;
document.Show.scrollTop.value = document.body.scrollTop;

document.Show.MouseX.value = tempX;
document.Show.MouseY.value = tempY;
return true;
}
html {
font-family:arial;
font-size:12px;
margin:0px;
padding:0px;
}
<body>
<br/>
<br/>
<br/>
<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="cursor:pointer;background:red;">.</span>

<div style="position:absolute;top:200px;left:200px;width:800px;height:800px;">
<form name="Show">
<input type="text" name="clientX" value="0" size="8">e.clientX
<br>
<input type="text" name="clientY" value="0" size="8">e.clientY
<br>
<input type="text" name="pageX" value="0" size="8">e.pageX
<br>
<input type="text" name="pageY" value="0" size="8">e.pageY
<br>
<input type="text" name="scrollLeft" value="0" size="8">scrollLeft
<br>
<input type="text" name="scrollTop" value="0" size="8">scrollTop
<br>
<input type="text" name="MouseX" value="0" size="8">Left
<br>
<input type="text" name="MouseY" value="0" size="8">Top
<br>
</form>
</div>
</body>

请注意在各种浏览器中将鼠标悬停在红色框上时返回的鼠标顶部和左侧。

为什么不同的浏览器返回不同的顶部/左侧值?我需要它为所有浏览器返回相同的值。如果有人可以深入了解这种行为并提出规避此问题的方法,那就太好了。提前致谢。

最佳答案

您需要始终重置您的 css 以避免此问题,众所周知,每个浏览器都有自己的 ma​​rginpadding 默认值和你必须重置它们并为所有浏览器定义你自己的和相同的默认值,在你的情况下你至少需要这个:

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}

我修改了你的例子http://jsfiddle.net/QAc5L/通过包含来自 http://meyerweb.comreset.css 文件它在 firefoxchrome 中完美运行。

关于javascript - 固定位置的顶部和左侧值在各种浏览器中发生变化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23601618/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com