不会在手机上显示图像

时间:2013-10-24 01:28:14

标签: javascript html css mobile web

我有一个页面.... http://kingola.com/test.html我正在为我的移动应用程序工作,但出于某种原因,该图像不会显示在我的Android移动浏览器上,但我在Firefox上看到它在我的Mac上。

另外......由于某种原因,它在IE中不起作用。

代码:

<!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>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <link rel="stylesheet" type="text/css" media="all" href="style.css" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js" ></script>
    <title>Reading XML with jQuery</title>
     <script>
        $(document).ready(function(){
            $.ajax({
                type: "GET",
                url: "http://kingola.com/podcast/",
                dataType: "xml",
                success: function(xml) {
                    $(xml).find('item').each(function(){
                        // var id = $(this).attr('guid');
                        var title = $(this).find('title').text();
                        var url = $(this).find("enclosure").attr('url');
                        var description = $(this).find('description').text();
                        var img = $(this).find("itunes\\:image").attr('href');
                        $('<div class="items" id="link_"></div>').html('<a href="'+url+'">'+title+'</a>').appendTo('#page-wrap');
                        $('<div class="brief"></div>').html(description).appendTo('#page-wrap');
                        $('<div class="image"></div>').html('<img src="'+img+'">').appendTo('#page-wrap');
                        $('<div class="ima-link"></div>').html(img).appendTo('#page-wrap');
                    });
                }
            });
        });
     </script>
</head>
<body>
    <div id="page-wrap">
        <h1>Reading XML with jQuery</h1>
     </div>
</body>
</html>

2 个答案:

答案 0 :(得分:0)

您的来源未在此处定义,因为没有显示,您可以试试吗

$('<div class="image"></div>').html('<img src="'+img+'">').appendTo($("#page-wrap"));

答案 1 :(得分:0)

img的变量未定义,因为节点的选择器是错误的,试试这个

var img = $(this).find("image").attr('href');    

因为节点的名称是image,所以itunes是这些节点的命名空间