我在查询字符串中有 url,例如http://www.domain.com:3000/allot_room?floor=6&hostel=1&student=1。在那,如何使用 jquery 获取学生参数值。
我用过这段代码
var url = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
它显示像 floor=6,hostel=1,student=1.In 那如何获取学生参数值。我尝试了不同的代码。