1
Comment faire correspondre une chaîne avec une URL dans Jquery
Je veux faire correspondre une chaîne dans une URL et rediriger ma page vers une autre URL. L’URL actuelle est: http://example.com/?healing=f29c Voici mon code: <script type="text/javascript"> jQuery( document ).ready(function($) { var redirect_url = 'example.com/healing/'; var current_url = window.location.href; if (current_url.indexOf('?healing=')){ if(!current_url.match(redirect_url)){ window.location.replace(redirect_url); } return false; } }); </script> Mais je …
1
jquery