发布网友 发布时间:2022-04-24 00:38
共1个回答
热心网友 时间:2022-04-22 11:22
为是重新加载页面或刷新页面使用jquery,你可以使用location.reload()命令,
以下是代码:
<html>
<head>
<title>Refresh a page in jQuery</title>
<scripttype="text/javascript"src="jquery-1.3.2.min.js"></script>
</head>
<body>
<buttonid="PageRefresh">Refresh a Page in jQuery</button>
<scripttype="text/javascript">
$('#PageRefresh').click(function() {
location.reload();
});
</script>
</body>
</html>