下の画像を背景画像として適用したいのですが、できません。
これが私の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>