js判断指定URL能否访问,并匹配链接
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js判断指定URL能否访问,并匹配链接相关的知识,希望对你有一定的参考价值。
<html>
<head>
<title>js判断指定URL能否访问,并匹配链接</title>
<head>
<--这里填写JS代码-->
<body>
<div id="url1">http://baidu.com</div>
<div id="url2">http://ewuyi.net</div>
...
<div id="urln">http://tool.173158.net</div>
</body>
</html>
以上源代码中有三个到N个网址,其中一个是无法访问的。
如果做到JS提取id="urln"里面的http://开头的网址,并逐个判断是否能访问,如果能的话JS给这个网址配上连接。
谢谢。如果好用可以加分。
如果就判断一个网址的也好的。
上面的代码本来是没有链接的,是要是能访问的话也像论坛那样自动加上<a herf="url">url</a>
本人菜鸟,请发代码,谢谢。
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script language="javascript">
function getURL(url)
var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
xmlhttp.open("GET",url,false);
xmlhttp.send();
if (xmlhttp.readyState==4)
if(xmlhttp.Status!=200)alert("不存在");
return xmlhttp.Status==200;
return false;
</script>
</head>
<body>
<a href="http://www.csdn.net/aaa.asp" onclick="return getURL(this.href)">csdn</a>
<a href="http://www.baidu.com/" onclick="return getURL(this.href)">baidu</a>
</body>本回答被提问者采纳
判断网站是否手机访问并跳转到指定的wap网站
第一种:直接JS脚本
<script type="text/javascript">
try {
var urlhash = window.location.hash;
if (!urlhash.match("fromapp")){
if (navigator.userAgent.match(/(iPhone|iPod|Android|ios|iPad)/i)){
window.location="http://192.168.0.108/smartwap";
}
}
}
catch(err){}
</script>
第二种:电脑版头部写法
<script language="javascript">
function is_mobile() {
var regex_match = /(nokia|iphone|android|motorola|^mot-|softbank|foma|docomo|kddi|up.browser|up.link|htc|dopod|blazer|netfront|helio|hosin|huawei|novarra|CoolPad|webos|techfaith|palmsource|blackberry|alcatel|amoi|ktouch|nexian|samsung|^sam-|s[cg]h|^lge|ericsson|philips|sagem|wellcom|bunjalloo|maui|symbian|smartphone|midp|wap|phone|windows ce|iemobile|^spice|^bird|^zte-|longcos|pantech|gionee|^sie-|portalmmm|jigs browser|hiptop|^benq|haier|^lct|operas*mobi|opera*mini|320x320|240x320|176x220)/i;
var u = navigator.userAgent;
if (null == u) {
return true;
}
var result = regex_match.exec(u);
if (null == result) {
return false
} else {
return true
}
}
function QueryString(item)
{
var sValue=location.search.match(new RegExp("[\?\&]"+item+"=([^\&]*)(\&?)","i"))
return sValue?sValue[1]:sValue
}
if (QueryString("ID")!="t" && is_mobile()) {
document.location.href= ‘http://192.168.0.108/smartwap‘;
}
</script>
<p><a href="http://192.168.0.108/smartwap/?q=t">电脑版</a>|<a href="javascript:void(0)">手机版</a></p>
以上是关于js判断指定URL能否访问,并匹配链接的主要内容,如果未能解决你的问题,请参考以下文章