জাভাস্ক্রিপ্ট ব্যবহার করে অন্য ওয়েবপেজে পুনঃনির্দেশ করতে, কোডটি নিম্নরূপ −
উদাহরণ
<!DOCTYPE html> <html> <head> <h1>Redirect to a Webpage Example</h1> <button class="redirectBtn">Redirect</button> <h2>Click the above button to Redirect to another Webpage</h2> <script> document .querySelector(".redirectBtn") .addEventListener("click", redirectFunction); function redirectFunction() { location.href("https://tutorialspoint.com/"); } </script> </body> </html>
আউটপুট
উপরের কোডটি নিম্নলিখিত আউটপুট −
তৈরি করবে
"পুনঃনির্দেশ" বোতামে ক্লিক করলে আমরা একটি নতুন সাইটে পুনঃনির্দেশিত হব -