0

我想将下面的图像应用为背景图像,但我不能这样做。

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

3 回答 3

0

那么,问题是执行代码时图像没有加载?您是否尝试header("Content-type: text/javascript")在输出任何内容之前在 setbackground.php 文件中包含代码?

<?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');
// ....
于 2013-02-09T11:43:24.723 回答
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; ?>)";

这对你有用吗?

于 2013-02-09T10:55:32.273 回答
0

尝试这个

body
{
 background: url(../Image/bg.jpg) #10a5d3;
}
于 2013-02-09T11:05:28.350 回答