使用Javascript从iframe路径名中获取id的值

时间:2013-10-28 14:37:44

标签: javascript jquery url

我需要使用java脚本(jquery)从url中获取id。 $(document).find('iframe')[0].contentDocument.location.pathname正在提供这样的结果:"/presentation/64/edit"

我需要能够检查此网址中的ID号是多少。我该怎么办?

3 个答案:

答案 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