我有一个标题,因为我试图在左侧角落使用一个图标。我在该页面中使用了 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>