我想将下面的图片应用为背景图片,但我无法这样做。
这是我的 setbackground.php 代码..
<?php
$header_tile_image_url = 'http://www.example.com/myimage.jpg';
?>
var css = 'body {background-color:#fff;background-image:url(<?php echo $header_tile_image_url; ?>)}';
var themeCssNode = document.getElementById('theme_css');
if (themeCssNode) {
themeCssNode.parentNode.removeChild(themeCssNode);
}
themeCssNode = document.createElement('style');
themeCssNode.type = 'text/css';
themeCssNode.id = 'theme_css';
document.getElementsByTagName('head')[0].appendChild(themeCssNode);
if (themeCssNode.styleSheet) {
themeCssNode.styleSheet.cssText = css;
} else {
var cssText = document.createTextNode(css);
themeCssNode.appendChild(cssText);
}
以上JavaScript将替换样式表并应用新样式表。 问题在于应用背景图像。
下面是我的 html代码 ..
<html>
</head> <title> test program </title>
<style id="theme_css" type="text/css">
body {background-color:blue;font:13px arial,sans-serif;}
</style>
</head>
</body>
<script src="setbackground.php"> </script>
<h1> This is my test page </h1>
</body>
</html>
答案 0 :(得分:0)
您的PHP代码需要全部包含在PHP标记中。
<?php
$header_tile_image_url = 'http://www.example.com/myimage.jpg';
?>
http://www.javascriptkit.com/javatutors/setcss3properties.shtml
document.body.style.backgroundColor = "#fff";
document.body.style.backgroundImage = "url(<?php echo $header_tile_image_url; ?>)";
这对你有用吗?
答案 1 :(得分:0)
试试这个
body
{
background: url(../Image/bg.jpg) #10a5d3;
}
答案 2 :(得分:0)
所以,问题是代码执行时图像没有加载?在输出任何内容之前,您是否尝试在setbackground.php文件中包含header("Content-type: text/javascript")
代码?
<?php
header("Content-type: text/javascript");
$header_tile_image_url = 'http://www.example.com/myimage.jpg';
?>
var css = 'body {background-color:#fff;background-image:url(<?php echo $header_tile_image_url; ?>)}';
var themeCssNode = document.getElementById('theme_css');
// ....