我需要使用 java 脚本(jquery)从 url 中获取 id。
$(document).find('iframe')[0].contentDocument.location.pathname
给出这样的结果:"/presentation/64/edit"
我需要能够检查此 url 中的 id 号是什么。我该怎么做?
我需要使用 java 脚本(jquery)从 url 中获取 id。
$(document).find('iframe')[0].contentDocument.location.pathname
给出这样的结果:"/presentation/64/edit"
我需要能够检查此 url 中的 id 号是什么。我该怎么做?
只是拆分这个字符串
var aa = "/presentation/64/edit";
aa.split("/");
aa[2];
在全
var Id=$(document).find("iframe")[0].contentDocument.location.pathname.split("/")[2];
使用.split()
var frameId=$(document).find("iframe")[0].contentDocument.location.pathname.split("/")[2];
你可以这样做:
var str = "/presentation/64/edit";
console.log(str.replace(/[^0-9]/g,'')); // Result 64