0

Web ページに次へのボタンと前へのボタンがあり、そのうちの 1 つをクリックすると、ページにデータが読み込まれます。データの読み込み中にこれらのボタンをクリックする機能を停止したい。それをしてもいいですか???

<div class="final_dates_container">
            <table border="1">
                <tr>
                    <td class="left"><a href="#" onclick="prev_date();"><img class="left_image" src="./include-images/left_arrow.png"/></a></td>

                    <td class="right"><a href="#" onclick="next_date();"><img class="right_image" src="./include-images/right_arrow.png"/></a></td>
                </tr>
            </table>
        </div>
4

2 に答える 2

2

はい、使用している場合は、他のようなajaxことができますdisablebuttons

前のクリック 関数

$.ajax({
    ....
    beforeSend:function(){
       $('#next').prop('disable',true);// disable next button
    }
    success:function(){
       //your code
       $('#next').removeAttr('disable');// remove disable attribute from here
    }
});
于 2013-08-20T12:20:56.503 に答える
0

ajaxグローバル関数を使用してこれを行うこともできます

            $(document).ajaxStart(function () {
            $("#btnSubmit").attr("disabled", true);
        });
        $(document).ajaxComplete(function () {
            $("#btnSubmit").attr("disabled", false);
        });
于 2014-02-04T10:14:00.937 に答える