Jump to content
  • 0

Изменение ссылки нажатием кнопки


BeetleJuice541
 Share

Question

 у меня есть ссылка

<a href="#.html" id="golova"><div> </div></a>

нужно чтобы после нажатия кнопки ссылка стала такой <a href="***.html" id="golova"><div> </div></a>- то есть изменилась ссылка на страницу,как это сделать?

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

$(кнопка).on('click',function(){

$('#golova').attr('href','тут урла которая нужна');

});

ну это если jquery , если надо чистый js то там немного больше кода будет.

чисты js только можно использовать(

что изменится? 

Link to comment
Share on other sites

  • 0

ну если у кнопки есть id то теоретически так

document.getElementById('id кнопки').addEventListener('click',function(){

   document.getElementById('#golova').setAttribute('href','нужная нам ссылка');

},false)

не работает(

<a href="golova.html" id="golova"><div> </div></a> - это та ссылка которая должна измениться

<div  onclick="num=2; gal(); gal2()" class="min" id="mgspina"><img src="img\mgspina.jpg" style="height:100px"></div> - это кнопка

function gal2(){
document.getElementById('mgspina').addEventListener('click',function(){
   document.getElementById('#golova').setAttribute('href','mgspina.html');
},false)
}
это js
 в чем ошибка?
Link to comment
Share on other sites

  • 0
function gal2(){
document.getElementById('mgspina').addEventListener('click',function(){
   document.getElementById('#golova').setAttribute('href','mgspina.html');
},false)
}   —->

function gal2(){
document.getElementById('mgspina').addEventListener('click',function(){
   document.getElementById('golova').setAttribute('href','mgspina.html');
},false)
}

но илайновые скрипты это печаль, лучше выносить в отдельный файл.
Edited by Galaxy
Link to comment
Share on other sites

  • 0

 

function gal2(){
document.getElementById('mgspina').addEventListener('click',function(){
   document.getElementById('#golova').setAttribute('href','mgspina.html');
},false)
}   —->

function gal2(){
document.getElementById('mgspina').addEventListener('click',function(){
   document.getElementById('golova').setAttribute('href','mgspina.html');
},false)
}

но илайновые скрипты это печаль, лучше выносить в отдельный файл.

 

все работает,единственное что не понятно,нужно 2 раза нажимать,почему?

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