-1

我创建了一个 wordpress 主题,即使用 javascript .innerHTML 将内容插入到某些 div 中。它可以很好地插入文本,但不能插入图像。

    document.getElementById("title").innerHTML='<img src="images/header.gif"/>'

我对 php 的了解很糟糕,但我也试过这个

    document.getElementById("title").innerHTML='<img src="<?php bloginfo('template_directory'); ?>/images/mainimage.jpg" title="" alt="" />';

这是 index.php

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head profile="http://gmpg.org/xfn/11">

<title><?php bloginfo('name'); ?><?php wp_title(); ?></title>

<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /> 
<meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats please -->

<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" />
<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/javascript.js"></script>
<?php wp_get_archives('type=monthly&format=link'); ?>
<?php //comments_popup_script(); // off by default ?>
<?php wp_head(); ?>
</head>
 <body  onload="formatPage();">

  <div id="container">
    <div id="logo"></div>

    <div id="title"></div>

    <div id="nav"></div>

    <div id="content"></div>


    <div id="footer"></div> 
 </div>
 <script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/jquery.js"></script>

 </body>
 </html>

这是javascript.js

      function formatPage(){
    document.getElementById("title").innerHTML='<img src="<?php bloginfo('template_directory'); ?>/images/header.gif" title="" alt="" />';
}

我了解我的文档类型已过时,并且标题中可能有一些不需要的 php。

4

1 回答 1

0

确认图片路径正确。您必须在 head 部分包含该 js 文件。这就是图片没有被加载的原因。如果它现在在 index.php 中,也将头部部分移动到 header.php。

于 2012-12-27T02:40:12.603 回答