Jump to content
  • 0

Click в jquery


paseonru
 Share

Question

Привет!!!

Помогите разобраться.

Почему в jquery не срабатывает click()

$("#click").click(function() {

$("#block").slideToggle(2000);

});

<a href="#" id="click">Ckuck here</a>

<div id="block" style="width:500px; padding:40px; background:#f6f6f6;">

<p>block</p>

</div>

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

Так всеравно не работает, по клике на ссылку нечего не происходит - непонятно почему

$("#click").live(function(e) {

$("#block").slideToggle(2000);

e.preventDefault();

});

<a href="#" id="click">Click here</a>

<div id="block" style="width:500px; padding:40px; background:#f6f6f6;">

<p>block</p>

</div>

А вот так работает

function link() {

$("#block").slideToggle("slow");

}

<a href="#" onClick="link()">Click here</a>

<div id="block" style="display:none; width:500px; padding:40px; background:#f6f6f6;">

<p>block</p>

</div>

Link to comment
Share on other sites

  • 0

Возможно скрипт написан перед этими элементами, попробуйте через $(document).ready(function() {сюда код});

и вместо e.preventDefault(); я лично предпочитаю использовать return false; хотя во всех учебниках твердят что это не правильно

  • Like 1
Link to comment
Share on other sites

  • 0

Возможно скрипт написан перед этими элементами, попробуйте через $(document).ready(function() {сюда код});

и вместо e.preventDefault(); я лично предпочитаю использовать return false; хотя во всех учебниках твердят что это не правильно

Спасибо, все заработало

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