我想编制自动链接交换
我想找到我的链接,例如:shaarzh[dot]com(只是域名,没有任何网页)
请帮我通过javascript或jquery找到我的链接
答案 0 :(得分:0)
你必须在服务器端这样做,例如用PHP
PHP(checkDomain.php):
<?php
$string = file_get_contents('http://www.shaarzh.com'); //Get external content
$reg = '/example.com/s'; //Search pattern
if(preg_match($reg, $string)){
$array = array('response' => 'true');
}else{
$array = array('response' => 'false');
}
echo json_encode( array('response'=>'false') ); //Response
?>
现在您可以使用JavaScript调用PHP脚本。
的JavaScript(jQuery的):
$.ajax({
url: "checkDomain.php",
dataType: 'json',
success: function(data){
alert(data.response);
}
})