我不知道這段代碼有什麼問題。我無法正確實施。 在此先感謝您的幫助。 這是我到目前爲止已經試過並堅持將參數傳遞給使用jquery ajax的方法後面的代碼出現錯誤
<script type="text/javascript">
$(document).ready(function() {
for (var key in localStorage) {
GetQuickVL(key);
}
});
function GetQuickVL(key) {
if (key.substring(0, 4) == "vhs-") {
$.ajax({
type: "POST",
url: "/QuickViewList.aspx/GetQuickVD",
data: '{key: ' +'1' + '}',
contentType: "application/json; charset=utf-8",
dataType: "json",
success: OnSuccess,
failure: function (response) {
alert(response.response);
},
error: function (response) {
alert(response.error);
}
});
}
}
function OnSuccess(response) {
alert('df');
}
</script>
和C-夏普代碼
[WebMethod]
public int GetQuickVD(int key)
{
return key;
}
控制檯中是否有錯誤? –
我得到一個奇怪的錯誤,但我不能發佈的圖像,因爲我沒有10個信譽點 – user3472352
@ user3472352,無需發佈圖像 - 文本的錯誤就足夠了 – Andrei