在本地执行(使用 Tomcat)时,我在Chrome中遇到奇怪的 html 页面呈现。使用 html 代码检查器分析代码,我在各处的像素大小中看到很多小数。
看这两张截图,分别对应以下片段:
不良本地样本:
<html>
<body style="margin: 0px;">
<img
style="-webkit-user-select: none"
src="http://localhost:8080/showcase-labs/javax.faces.resource/images/ui-icons_38667f_256x240.png.jsf?ln=primefaces-aristo">
</body>
</html>
良好的远程样本:
<html>
<body style="margin: 0px;">
<img
style="-webkit-user-select: none"
src="http://www.primefaces.org/showcase-labs/javax.faces.resource/images/ui-icons_38667f_256x240.png.jsf?ln=primefaces-aristo">
</body>
</html>
这是一个更复杂案例的简化案例。有人可以给我一些提示吗?有人可以提供一个 JQuery 函数来为整个 DOM 舍入这些小数吗?
谢谢!