Computer >> Máy Tính >  >> Lập trình >> Javascript

encodeURIComponent () trong JavaScript

Hàm encodeURIComponent () chấp nhận một giá trị chuỗi đại diện cho một URI và mã hóa nó bằng cách thay thế các ký tự trong nó bằng cách sử dụng các số (1 đến 4) và chuỗi thoát.

Cú pháp

Cú pháp của nó như sau

encodeURIComponent('https://www.qries.com/');

Ví dụ

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var result1 = encodeURIComponent('https://www.qries.com/');
      document.write(result1);
      document.write("<br>");
      var result2 = encodeURIComponent('https://www.tutorialspoint.com/');
      document.write(encodeURIComponent(result2));
   </script>
</body>
</html>

Đầu ra

http%3A%2F%2Fwww.qries.com%2F
http%253A%252F%252Fwww.tutorialspoint.com%252F