JavaScript Butona Tıklayınca Sayfayı Yenileme

Shiva

Admin
Joined
Jul 31, 2019
Topics
522
Messages
4,091
Solutions
194
Reaction score
13,963
Location
Berlin
En basit şekilde bir butona tıklandığında sayfayı yenilemek için gerekli kodları buton içine yerleştirdim.


1
2
3
4
5
6
7
8
9
10
<!doctype html>
<html>
<head>
<title>www.realitycheats.com</title>
<meta charset="utf-8">
</head>
<body>
<input type="button" value="Sayfayı Yenileme" onclick="document.location.reload(true);">
</body>
</html>
 

Top