最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Decoding '%40' back to '@' using jquery to populate input fields - Stack Overflow

programmeradmin3浏览0评论

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

发布评论

评论列表(0)

  1. 暂无评论