在點擊重試按鈕,是有可能表現出一些處理設備如何在這種情況下,在按鈕按下時顯示一個指示器
我的代碼上發生的情況如下
$(document).on("click", ".getStarted", function(event) {
// Simulating Net Connection here
var a = 10;
if (a == 10) {
$('#mainlabel').delay(100).fadeIn(300);
$('#nonetconnmain').popup({
history : false
}).popup('open');
event.stopImmediatePropagation();
event.preventDefault();
return false;
}
});
$(document).on('click', '.nonetconnmainclose', function(event) {
$('#nonetconnmain').popup('close');
$(".getStarted").trigger("click");
event.stopImmediatePropagation();
event.preventDefault();
return false;
});
$(document).on("popupbeforeposition", "#nonetconnmain", function(event, ui) {
$('#mainlabel').hide();
});
我的代碼,功能是工作,但似乎該應用程序沒有做任何動作
所以我的問題是它的POSS IBLE表現出任何的指示(例如,延遲,進度,任何東西)
我想這不能正常工作,請您讓我知道如何做到這一點? – Pawan
嘗試追加這個$( '#nonetconnmain')追加( '
@PreethiJain:我在這個問題中包含了kshitij的註釋。 – zx485