我遇到了一些JavaScript代碼的問題。當我在本地測試網站時它工作正常,但在服務器上不起作用,除非我重新加載頁面。代碼如下。如果您需要更多詳細信息,請告訴我。Javascript在本地工作,但不在服務器上
$(document).ready(function(){
$("#header_inbox_bar").click(function() {
const inboxtopcount = $('#inboxtopcount')
const badgedanger = inboxtopcount.parent('.badge-danger')
$.ajax({
type: 'POST',
url: 'controllers/ctrl_client_update_inbox_notifications.php',
success (res) {
if (res) {
badgedanger.hide()
inboxtopcount.hide()
}
},
});
});
});
同源策略? – Evgeny
你看到任何錯誤? – jdave
請向我們顯示錯誤 – sumit