Home > Daily Programming > HTML Knowledge > How to use jquery to refresh the current page on click

How to use jquery to refresh the current page on click

藏色散人
Release: 2018-12-12 09:48:49
Original
27724 people have browsed it

jquery is also very simple to achieve the effect of clicking to refresh the current page. We can do this directly through the location.reload() method, that is, reload the current document.

How to use jquery to refresh the current page on click

# Below we will introduce you to jquery’s method of clicking to refresh the current page through a simple code example.

The code example is as follows:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <title>jquery实现点击刷新当前页面示例</title>
    <script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
    <script type="text/javascript">
 $(function () {
            $("button").click(function () {
                location.reload(true);
 });

 });

 </script>
</head>
<body>
<p>单击以下按钮重新加载此页面。</p>
<button type="button">刷新</button>
</body>
</html>
Copy after login

The front-end effect is as follows:

How to use jquery to refresh the current page on click

Here we click refresh, but nothing seems to happen of.

Based on the above code, we will add some new content to the body:

<p>单击以下按钮重新加载此页面。123</p>
Copy after login

Then click refresh at this time, and you will see the effect as follows:

How to use jquery to refresh the current page on click

Note: The

reload() method is used to refresh the current document, similar to the refresh page button on your browser.

If the parameter of this method is set to true, then regardless of the last modification date of the document, it will bypass the cache and re-download the document from the server. This has the exact same effect as if the user held down the Shift key while clicking the browser's refresh button.

This article is about jquery's method of clicking to refresh the current page. It is easy to understand and I hope it will be helpful to friends in need!

The above is the detailed content of How to use jquery to refresh the current page on click. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template