0

我有一个标题,因为我试图在左侧角落使用一个图标。我在该页面中使用了 jquerymobile 图标。但我看不到图标符号,只显示了空图标。查找随附的屏幕截图以供参考。下面是来自html的代码。

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<link rel="stylesheet"  href="http://code.jquery.com/mobile/1.0b1/jquery.mobile-1.0b1.min.css" /> 
    <script src="http://code.jquery.com/jquery-1.6.1.min.js"></script> 
    <script src="http://code.jquery.com/mobile/1.0b1/jquery.mobile-1.0b1.min.js"> </script>

</head>
<body>
<div data-role="page" id="test">
        <div data-role="header" data-theme="a">
            <a href="#home" data-icon="home" data-iconpos="notext"></a>
            <h1>Home</h1>
        </div>
    </div>
</body>
</html>

在此处输入图像描述

4

1 回答 1

1

只是在小提琴中尝试过,它似乎对我来说工作正常。http://jsfiddle.net/LYCjv/

可能值得下载jQueryMobile在您自己的服务器上托管文件并在本地引用 css/js 文件,这可能是 CDN 的一些问题?

于 2013-08-22T09:43:32.937 回答