A. js如何更改css样式,我想将style="background:url('/Images/shuru.gif') no-repeat;"隐藏起来
document.getElementById(yourId).style.backgroundImage=" ";
B. js改变backgroundImage
<textareaid=ttt></textarea>
<scripttype=text/javascript>
ttt.style.backgroundImage='url(SH101721.JPG)';
ttt.style.width='100%';
ttt.style.height='400';
</script>
补充:
<div>也没问题
<divid=ttt>
<br>
<br>
<br>
<br>
<br>
<br>
</div>
<scripttype=text/javascript>
ttt.style.backgroundImage='url(中国心.jpg)';
</script>
C. 如何用javascript改变body的background属性.
<body style="background-image: url(http://i2.sinaimg.cn/home/07index/sinahome_ws_009.gif);">
<script type="text/javascript">
function selectbg(img){
//alert(window.document.body.style.backgroundImage);
window.document.body.style.backgroundImage = "url("+img+")";
}
</script>
<a href="javascript:selectbg('http://img..com/img/logo-.gif');">背景</a>
<a href="javascript:selectbg('http://www.google.cn/intl/zh-CN/images/logo_cn.gif');">google背景</a>
</body>
D. javascript 更改背景颜色 style.background
js里的赋值“==”错了。用“=”
E. js 动态改变background:url()值
可以复用字符串拼接的方法将变量传到制url中。
1、新建html文档,在body标签中添加一个div标签,为这个div标签设置一个北京图片,然后引入jQuery文件:
F. js怎么改变background-position值,救命
background-position属性对应在dom中是:backgroundPosition。
以下来自w3school:
backgroundPosition
属性设置背景图像的位置。
实例:
document.body.style.backgroundPosition="bottom
center";
G. 关于js控制background-position
是js还是ps?js里是***.style.backgroundPositionX与***.style.backgroundPositionY注意大写,不过在火狐和IE中有差别,假如值25,IE就会返回25px答案补充你用选框选上.在"窗口"-->"信息"里,可以看到WH,就是长和宽了,然后自己去算...简单的加减毕竟photoshop的目的不是仅仅为了做网页,肯定没有其他的简便方法答案补充如果你是在CSS中设置把握不准background-position的x,y轴位置,那就更好说了,一点点的试呗,多了就减几象素,少了就加.如果你有什么特殊的要求或想法,那就得先全面了解你所使用的软件,再去想解决的法.条条大路通罗马.
H. 如何js改变background-position
你要背景图和元素位置一样,那么你直接取元素的位置交给背景图就完了。
$(this).parent().animate({'background-position-y':$(this).position().top},500);
I. js修改backgroundimage时 报错
document.getElementById("#AirLight1")
把#去掉
document.getElementById("AirLight1")
J. js中.style.background无法改变背景颜色
是不是还有在其他优先级更高的地方对这个标签设置了颜色,可以用网页的审查元素看看最终使用的css