我嘗試填充按鈕單擊提示框的數據,但是當我點擊按鈕,然後警告框不填充數據使用javascript
我試試這個
<head runat="server">
<title></title>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
</head>
<body>
<form id="form1" runat="server">
<div>
<button id="submitchart" runat="server">Show Chart</button>
</div>
</form>
</body>
<script type="text/javascript">
$('#submitchart').click(function() {
//alert("i");
$.ajax({
type: 'POST',
//url: 'WebForm1.aspx/Jqufunc',
//data: JSON.stringify({ yearP: $('#yearValue').val() }),
//data:{},
contentType: 'application/json;charset=utf-8',
dataType: 'json',
success: function() {
//alert(JSON.stringify(response.d));
alert("i");
}
});
});
//});
</script>
當我寫警告(「我」)在此行後$('#submitchart').click(function() {
然後警報框填充,但當我寫入警報(「我」)後success: function() {
然後警報框不填充
任何解決方案?
這意味着Ajax不是一個成功添加錯誤功能,所以你會的。檢查XHR中的開發工具以獲取ajax response..check控制檯的錯誤 – guradio
爲什麼你還沒有在ajax中設置url ??? –
任何控制檯錯誤? – madalinivascu