Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

ฟังก์ชัน encodeURIComponent() ใน JavaScript


ฟังก์ชัน encodeURIComponent() ยอมรับค่าสตริงที่แสดง URI และเข้ารหัสโดยแทนที่อักขระในนั้นโดยใช้ตัวเลข (1 ถึง 4) และ Escape Sequence

ไวยากรณ์

ไวยากรณ์ของมันคือดังต่อไปนี้

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

ตัวอย่าง

<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>

ผลลัพธ์

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