ตัวอย่าง
ถอดรหัส URI หลังจากการเข้ารหัส:
var uri = "http://w3ii.com/my test.asp?name=stale&car=saab";
var
uri_enc = encodeURIComponent(uri);
var uri_dec = decodeURIComponent(uri_enc);
var res = uri_enc + "<br>" +
uri_dec;
ผลของความละเอียดจะเป็น:
http%3A%2F%2Fw3ii.com%2Fmy%20test.asp%3Fname%3Dst%C3%A5le%26car%3Dsaab
// Encoded URI
http://w3ii.com/my test.asp?name=stale&car=saab // Decoded URI
ลองตัวเอง» ความหมายและการใช้งาน
decodeURIComponent () ฟังก์ชันถอดรหัสส่วนประกอบ URI
เคล็ดลับ: ใช้ encodeURIComponent () ฟังก์ชั่นการเข้ารหัสเป็นส่วนประกอบ URI
สนับสนุนเบราว์เซอร์
ฟังก์ชัน | |||||
---|---|---|---|---|---|
decodeURIComponent() | ใช่ | ใช่ | ใช่ | ใช่ | ใช่ |
วากยสัมพันธ์
decodeURIComponent( uri )
ค่าพารามิเตอร์
Parameter | Description |
---|---|
uri | Required. The URI to be decoded |
รายละเอียดทางเทคนิค
กลับค่า: | สตริงตัวแทนถอดรหัส URI |
---|
ฟังก์ชัน JavaScript ทั่วโลก