0712-2888027 189-8648-0214
微信公眾號

孝感風信網(wǎng)絡科技有限公司微信公眾號

當前位置:主頁 > 技術支持 > Javascript/JQuery > Ajax請求搜索詞點擊統(tǒng)計實現(xiàn)的代碼片段

Ajax請求搜索詞點擊統(tǒng)計實現(xiàn)的代碼片段

時間:2024-09-19來源:風信官網(wǎng) 點擊: 587次
Ajax請求搜索詞點擊統(tǒng)計實現(xiàn)的代碼片段,以下代碼為項目開發(fā)中的片段,實現(xiàn)方法思路僅供參考。

 //搜索詞點擊統(tǒng)計
    $('.hot-word').on('click', function () {
        var id = $(this).attr('data-id');
        var words = $(this).attr('data-words');
        $.ajax({
            type: "post",
            url: Config.searchWordsUrl,
            data: {
                id: id,
                words: words,
                '_csrf-frontend': $('meta[name="csrf-token"]').attr('content')
            },
            dataType: "json",
            success: function (message) {
                console.log(message);
            }
        });
    });
熱門關鍵詞: Ajax 搜索詞 點擊統(tǒng)計
欄目列表
推薦內容
熱點內容
展開