我需要使用java脚本(jquery)从url中获取id。
$(document).find('iframe')[0].contentDocument.location.pathname
正在提供这样的结果:"/presentation/64/edit"
我需要能够检查此网址中的ID号是多少。我该怎么办?
答案 0 :(得分:3)
只需拆分此字符串
var aa = "/presentation/64/edit";
aa.split("/");
aa[2];
完整
var Id=$(document).find("iframe")[0].contentDocument.location.pathname.split("/")[2];
答案 1 :(得分:1)
使用.split()
var frameId=$(document).find("iframe")[0].contentDocument.location.pathname.split("/")[2];
答案 2 :(得分:0)
你可以这样做:
var str = "/presentation/64/edit";
console.log(str.replace(/[^0-9]/g,'')); // Result 64