我想使用JavaScript从我的URL中提取查询字符串,并且想要对查询字符串名称进行不区分大小写的比较。这是我在做什么:
var results = new RegExp('[\\?&]' + name + '=([^&#]*)').exec(window.location.href); if (!results) { return 0; } return results[1] || 0;
但是上面的代码进行区分大小写的搜索。我尝试过,/<regex>/i但没有帮助。知道如何实现吗?
/<regex>/i
您可以添加“ i”修饰词,表示“忽略大小写”
var results = new RegExp('[\\?&]' + name + '=([^&#]*)', 'i').exec(window.location.href);