奇怪的字符 Jquery 手机
Strange characters Jquery Mobile
我是 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>
您应该将其添加到文档的顶部
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
jQuery 移动版使用空格来清除一些内容,但在未设置元数据的情况下将
替换为这些奇怪的字符。
我找到问题了。
当您在编程时使用制表符时,它有时不会按应有的方式制表。 (制表符变成空格)
使用右键单击 -> 页面源并查找字符。当您找到它们时,转到该行代码并删除那里的所有选项卡。
如您所见,A 字符消失了:
我是 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>
您应该将其添加到文档的顶部
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
jQuery 移动版使用空格来清除一些内容,但在未设置元数据的情况下将
替换为这些奇怪的字符。
我找到问题了。
当您在编程时使用制表符时,它有时不会按应有的方式制表。 (制表符变成空格) 使用右键单击 -> 页面源并查找字符。当您找到它们时,转到该行代码并删除那里的所有选项卡。
如您所见,A 字符消失了: