gpt4 book ai didi

javascript - 使用 javascript 设置背景图片

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:52:03 25 4
gpt4 key购买 nike

在 chrome、safari 和 opera 中,将背景图像设置为绝对引用,例如:“/images/image.png”将其更改为“http://sitepath/images/image.png”。

它不会在 firefox 中执行此操作。

有没有什么办法可以避免这种行为,或者是将其写入浏览器的 javascript 引擎中?使用 jquery 设置背景图片也有这个问题。

问题是我将 HTML 发布到需要这种特定格式的 url 的 php 脚本。我知道设置图像相对路径可以解决这个问题,但我做不到。

唯一的替代方法是使用正则表达式。转换网址。

谢谢。

在 firefox 和 chrome/webkit 浏览器中测试:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<div style="height:400px;width:400px;background-image:url(/images/images/logo.gif);">
</div>
<br />
<br />
<div id="test" style="height:400px;width:400px;">
</div>
<script type="text/javascript" src="/javascripts/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#test").css('background-image',"url(/images/images/logo.gif)");
alert(document.getElementById('test').style.backgroundImage);
});
</script>
</body>
</html>

最佳答案

不确定您是如何将该位置放入文档中的,但您可以使用 window.location.hostname 获取域并在其前面添加。

var bgImg = window.location.hostname + '/images/images/logo.gif';
$("#test").css('background-image', 'url('+bgImg+')');

您可以将 /images/images/logo.gif 替换为生成图像的方式(我猜是服务器端?)

关于javascript - 使用 javascript 设置背景图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2750710/

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