您好我有这样的网址:http://172.16.254.254/index.php?url=http://172.16.1.3%2f
你需要在javascript中传递所有thr ip v4地址的url值。
有什么建议吗?
我在php中做过但我想尝试用javascript做。
for (var key in p) {
if (p.hasOwnProperty(key)) {
console.log(key + " -> " + p[key]);
}
}
答案 0 :(得分:0)
遍历您的IP数组并连接到URL
ipArray.forEach(ip => {
var url = 'http://172.16.254.254/index.php?url=http://' + ip;
// do whatever you want with url
});