简体   繁体   中英

how to get bootstrap-slider min and max value input

I want to use bootstrap-slider js and get 2 min and max value after clicking on submit button. this is what i want to achieve after clicking on submit button: domain.com?min_id=10&max_id=100

<form>
 <input name="min_id">
 <input name="max_id">
 <input type="submit" value="submit">
</form>
$(form).submit(function(e) {
    $get("domain.com?min_id="+input.attr("min_id")+"&max_id="+input.attr("max_id"))
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM