Bài viết này sẽ hướng dẫn một ví dụ đơn giản để lấy URL trang website hiện tại bằng ngôn ngữ JavaScript. |
Để lấy được đường dẫn web hiện tại của trang web ta sử dụng hàm "window.location". Bạn xem full đoạn mã bên dưới để biết cách sử dụng.
Source code - Mã Nguồn:
<html>
<head>
<title>Javascript Get URL Address</title>
</head>
<body>
<script>
document.write(document.location.href)
</script>
</body>
</html>
<head>
<title>Javascript Get URL Address</title>
</head>
<body>
<script>
document.write(document.location.href)
</script>
</body>
</html>
Result - Kết quả.
Writer: +Bui Ngoc Son
No comments:
Post a Comment