06/04/2021, 14:48
Hàm encodeURIComponent() trong Javascript - Javascript Function
Code RUN <!DOCTYPE html> <html> <head> <meta charset="utf-8"> </head> <body> <h1>Học lập trình miễn phí tại Zaidap.com.net</h1> <button onclick="myFunction()">Run</button& ...
Phương thức encodeURIComponent()
có chức năng mã hóa một chuỗi uri, phương thức encodeURIComponent()
sẽ mã hóa tất các nhưng kí tự đặc biệt có trong chuỗi uri.
Sử dụng phương thức decodeURIComponent()
để giải mã chuỗi uri đã được mã hóa.
Cú pháp
Cú pháp: encodeURIComponent( uri)
Trong đó:
- uri là chuỗi uri cần mã hóa.
Cách sử dụng
Sử dụng phương thức encodeURIComponent()
để mã hóa chuỗi uri.
Code
RUN
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> </head> <body> <h1>Học lập trình miễn phí tại Zaidap.com.net</h1> <button onclick="myFunction()">Run</button> <p id="demo"></p> <script> var source = 'Zaidap.com.net/hÉc-js™©£'; document.getElementById("demo").innerHTML = source; function myFunction() { var encode = encodeURIComponent(source); decode = decodeURIComponent(encode); var content = 'EnCode: ' + encode + '<br>' + 'DeCode: ' + decode; document.getElementById("demo").innerHTML = content; } </script> </body> </html>
Kết quả
EnCode: Zaidap.com.net%2Fh%C3%89c-js%E2%84%A2%C2%A9%C2%A3 DeCode: Zaidap.com.net/hÉc-js™©£
Tham khảo: w3schools.com
Nguồn: Zaidap.com.net