admin管理员组

文章数量:1350085

So I have this jquery script (thanks to a previous member right here) that takes the email or any other query string from the url and populates the value of the respective input fields on the page...

So... the form input is something like:

<input type="text" name="email" >

And the script is...

$(function () {

//grabs the entire query string
var query = document.location.search.replace('?', '');

//extracts each field/value pair
query = query.split('&');

//runs through each pair
for (var i = 0; i < query.length; i++) {

  //splits up the field/value pair into an array
  var field = query[i].split("=");

  //targets the field and assign its value
  $("input[name='" + field[0] + "'], select[name='" + field[0] + "']").val(field[1]);

}

THE PROBLEM: The url is encoded like this...

/?email=some%40email

So in my code, how can I decode the '%40' back to '@' before it populates the values in the input fields? Any guidance?

So I have this jquery script (thanks to a previous member right here) that takes the email or any other query string from the url and populates the value of the respective input fields on the page...

So... the form input is something like:

<input type="text" name="email" >

And the script is...

$(function () {

//grabs the entire query string
var query = document.location.search.replace('?', '');

//extracts each field/value pair
query = query.split('&');

//runs through each pair
for (var i = 0; i < query.length; i++) {

  //splits up the field/value pair into an array
  var field = query[i].split("=");

  //targets the field and assign its value
  $("input[name='" + field[0] + "'], select[name='" + field[0] + "']").val(field[1]);

}

THE PROBLEM: The url is encoded like this...

http://www.example./?email=some%40email.

So in my code, how can I decode the '%40' back to '@' before it populates the values in the input fields? Any guidance?

Share Improve this question asked Aug 4, 2015 at 7:54 AmodAmod 2838 silver badges20 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 11

You can use plain javascript

decodeURIComponent('some%40email.')

decodeURIComponent('@')

decodeURIComponent('%40')

本文标签: javascriptDecoding 394039 back to 3939 using jquery to populate input fieldsStack Overflow