我将当前的URL变量声明为
var vFullURL = (document.URL);
使用正确的URL字符串将其添加到表中。
当我尝试以下内容时:
var vURL = vFullURL.split("/");
或
var vURL = vFullURL.toString.split("/");
网址返回System.Object[]
有谁知道如何分割网址?
答案 0 :(得分:1)
您需要在分割后调用toString()
,而不是之前。
var vFullURL = document.URL;
var vURL = vFullURL.split('/').toString();
结果(对于此页面,例如):"http:,,stackoverflow.com,questions,27786939,javascript-cannot-split-sharepoint-url-showing-as-system-object,27787020#27787020"