我的代码无效,我无法弄清楚为什么,我试图能够拍摄上传的图像并使其成为背景图像,而不使用数据库。请帮忙!我经常使用HTML和CSS,但我正在尝试这里列出的jquery代码来做我想要的。
代码:
#download here http://simplehtmldom.sourceforge.net/
#example to
include('simple_html_dom.php')
$html = file_get_html('http://yourpage.com/');
$resultArr= array();
foreach($html->find('div.poetry') as $e)
$temp =$e->innertext;
array_push($resultArr,$temp);
echo $result = $resultArr[0];
答案 0 :(得分:2)
要设置正文背景,您应该执行以下操作。
document.body.style.background = "url('" + backImage[whichImage] + "')";