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 badges2 Answers
Reset to default 11You can use plain javascript
decodeURIComponent('some%40email.')
decodeURIComponent('@')
decodeURIComponent('%40')
本文标签: javascriptDecoding 394039 back to 3939 using jquery to populate input fieldsStack Overflow
版权声明:本文标题:javascript - Decoding '%40' back to '@' using jquery to populate input fields - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743864216a2552286.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论