diff --git a/source/Ox.UI/js/Core/URL.js b/source/Ox.UI/js/Core/URL.js index b59b88a2..7dc2bdd0 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);