我试图获得一个按钮来处理数据图标,据说 “http://jquerymobile.com/demos/1.2.1/docs/buttons/buttons-icons.html” 应该是编写以下代码的情况......
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<link href="Content/jquery.mobile-1.3.0.min.css" rel="stylesheet" type="text/css" />
<a data-role="button" href="#page1" data-icon="arrow-u" data-iconpos="left">
Button
</a>
</body>
</html>
但是,当我在本地构建并部署在服务器上时,它不会显示图标。 有人可以帮忙吗?
答案 0 :(得分:3)
您的标记应如下所示。
<head>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css" />
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>
</head>
然后是jQuery Mobile代码
<div data-role='page'>
<a href='#' data-role='button' data-icon='arrow-u' data-iconpos='left'>Button</a>
</div>
参考文献:
答案 1 :(得分:0)
请参阅此jsbin
你需要把&lt; link&gt;标记在头部内容中,您也可能需要添加一些其他(下面)脚本。
<link href="http://code.jquery.com/mobile/latest/jquery.mobile.css" rel="stylesheet" type="text/css" />
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script src="http://code.jquery.com/mobile/latest/jquery.mobile.js"></script>
答案 2 :(得分:0)
您的样式表需要在头部链接。
<head>
<title></title>
<link href="Content/jquery.mobile-1.3.0.min.css" rel="stylesheet" type="text/css" />
</head>
<body>
<a data-role="button" href="#page1" data-icon="arrow-u" data-iconpos="left">
Button
</a>
</body>
答案 3 :(得分:0)
将您的链接标记移至head部分。并根据您的css文件链接,
You must also include JQM's images folder under your "Content/" folder.
您的HTML代码必须如下所示
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css" />
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>
</head>
<body>
...content goes here...
</body>
</html>