“halaman refresh jQuery” Kode Jawaban

halaman refresh jQuery

$('#myElement').click(function() {
    location.reload();
});
Grepper

Halaman Refresh PHP

header("Refresh:0");
A-Décamètre

cara memuat ulang halaman sepenuhnya di jQuery

// reload page from cache:
location.reload();
// reload page from server:
location.reload(true);
Jay

Refresh Div JQuery

$("#mydiv").load(location.href + " #mydiv");

//this is actualy not so nice but it does the job.  
Lonely Lemur

Segarkan halaman di jQuery

$('#something').click(function() {
    location.reload();
});
Amused Alligator

menyegarkan halaman dengan jQuery

$(document).ready(function() {
    $("button").click(function() {
        location.reload(true);
    });
});
LazFlex

Jawaban yang mirip dengan “halaman refresh jQuery”

Pertanyaan yang mirip dengan “halaman refresh jQuery”

Lebih banyak jawaban terkait untuk “halaman refresh jQuery” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya