這次我被Json Parse錯誤鎖定。目前,我在開發MVC Asp.net 4在那裏我有文本框和按鈕 jQuery的Mobile.In頁Web應用程序,此問題時Jquery Json解析錯誤
我使用jQuery的2.1.1 JS文件 ..錯誤發生的歷史在查看
jQuery.parseJSON = function(data) {
return JSON.parse(data + ""); // Here data comes as undefined
};
代碼 下面有我的網頁文本框和按鈕
<div class="HwySearchTextBoxSmaller">
@Html.TextBoxFor(Model => Model.txtPickingScan, new { @autofocus = "autofocus" })
</div>
<div id="btn" style="float: left; margin-top: 1.2em; margin-left: 1em;">
<input type="submit" id="btnSearchMP" name="btnSearchMP" class="Hwy905SearchIcon" data-role="none" value="" />
</div>
<div id="dButton">
<input type="submit" id="btnMPSearch" name="btnMPSearch" data-theme="d" value="@Resources.ViewBatch" />
<input type="submit" id="btnMPSearch1" name="btnMPSearch" data-theme="d" value="@Resources.ViewGrp" />
</div>
每當我進入文本框,模糊,按鈕單擊,在鍵盤上和其他相關事件,這個錯誤是彈出
我已上傳的錯誤圖片。
由於此問題,任何瀏覽器都無法使用該頁面。
請幫我。當然,我需要找到一個解決方案。請幫我
而是使用jQuery 2.1.1的文件我用谷歌的API,jQuery的libray這也表明了薩默爾錯誤
下面是代碼
的DOM圖像
jQuery 2+刪除了很多對IE及其倒退方式的支持。嘗試使用1.11 –
這不僅出現在IE中,而且還出現在所有其他瀏覽器中 –
在這種情況下,請將您的代碼添加到問題中。 –