diff --git a/source/Ox.UI/js/Core/URL.js b/source/Ox.UI/js/Core/URL.js index 7dc2bdd0..13aec1f3 100644 --- a/source/Ox.UI/js/Core/URL.js +++ b/source/Ox.UI/js/Core/URL.js @@ -567,7 +567,7 @@ Ox.URL = function(options) { } function encodeValue(value, isItem) { - var chars = isItem ? '/#%' : '=*&|()#%', + var chars = isItem ? '/#%' : '*=&|()#%', ret = ''; value.toString().split('').forEach(function(char) { var index = chars.indexOf(char);