How to change the querystring when I submit my GET form using JQuery?
问题 Suppose that I have a simple form in my page like this : <form action="/properties/search" method="GET" id="form_search"> <p> <label for="price">Min price:</label> <input type="text" name="min_price" id="min_price"> </p> <p> <label for="price">Max price:</label> <input type="text" name="max_price" id="max_price"> </p> <p> <input type="submit"> </p> </form> When I submit my form, I have the following url : http://.../properties/search?min_price=100000&max_price=200000 I want to change this url