Jump to content
  • 0

Переход по внешней ссылке


Simpsons
 Share

Question

Здравствуйте! Нужно сделать так чтобы при переходе по ссылке (внешней) Сначала вылазила страница с подтверждением. Пример:

h_1347292887_2111301_50ef6aa35b.jpeg

Желательно без php. В Гугле находил несколько решений, но почему-то они не работали.

Логотип ЯПлакалъ - не реклама)

Edited by Simpsons
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Примерно так:

Проверяем все ссылки на страницы по маске, в таком варианте все ссылки внутренние должны иметь полный адрес а не относительный, если хочется и относительный переписывайте регулярку сами, если ссылки не содержат вашего домена добавляем им событие:


...
<head>
<script>
window.onload = function(){
var a_s = document.getElementsByTagName("a");
for(var i = 0; i < a_s.length ; i++){
if(!/.*mysite\.ru.*/.test(a_s[i].href)){
a_s[i].onclick = function(){
window.location.href = "http://mysite.ru/warning.html#"+a_s[i].href;
}
}
}
}
</script>
</head>
<body>
...

а на странице warning.html такой скрипт(берем адрес из хеша и подставляем нашей ссылке):


...
<head>
<script>
window.onload = function(){
document.getElementById("mylink").href = window.location.hash;
}
</script>
</head>
<body>
text...
<a id="mylink" href="#">Перейти</a>

Edited by wwt
  • Like 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy