我是Jquery手机的新手。当我尝试在我的页面上插入单选按钮时,我会看到例子:
这是我的单选按钮代码:
<fieldset data-role="controlgroup" data-type="horizontal" data-mini="true">
<legend>Show in VK</legend>
<input type="radio" name="radio-choice-b" id="radio-choice-c" checked="checked">
<label for="radio-choice-c">Yes</label>
<input type="radio" name="radio-choice-b" id="radio-choice-d" >
<label for="radio-choice-d">No</label>
</fieldset>
这些是我的包含(没有编辑到jquery移动文件)
<link rel="stylesheet" href="lib/jquery.mobile.custom.structure.css" />
<link rel="stylesheet" href="lib/jquery.mobile.custom.theme.css" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="lib/jquery.mobile.custom.js"></script>
答案 0 :(得分:4)
我找到了问题。
在编程时使用制表符时,有时候不会按照它应该的方式制表。 (标签变成空格) 使用右键单击 - &gt;页面源并查找字符。当你发现它们去那行代码并删除那里的所有标签时。
你可以看到A字符消失了:
答案 1 :(得分:0)
您应该将其添加到文档顶部
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
jQuery mobile使用空格来清除一些内容,但用这些奇怪的字符替换
而没有设置元。