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

hàm encodeURI () trong JavaScript

Hàm encodeURI () 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 = encodeURI('https://www.qries.com/?x=шеллы');
      document.write(result1);
      document.write("<br>");
      var result2 = encodeURI('https://www.tutorialspoint.com/?x=шеллы');
      document.write(result2);
   </script>
</body>
</html>

Đầu ra

https://www.qries.com/?x=%D1%88%D0%B5%D0%BB%D0%BB%D1%8B
https://www.tutorialspoint.com/?x=%D1%88%D0%B5%D0%BB%D0%BB%D1%8B