我想将下面的图像用作背景图像,但我无法这样做。

这是我的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>

最佳答案

尝试这个

body
{
 background: url(../Image/bg.jpg) #10a5d3;
}

10-05 22:34