Jump to content
  • 0

Изменение свойства при клике


Rezpektor
 Share

Question

Подскажите пожалуйста, как сделать в js.

Чтобы по клику элемент передвигался влево, а при повторном клике на этот элемент возвращался на свое место?)

Сделал вот так, оно только одинажды работает.

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#language').click(function() {
$('#language input').css('right', '28px');
$(this).css('right', '4px');
});
});
</script>

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

записывайте в переменную флаг, о том, что событие произошло. по этому значению вычисляйте второй клик. что-то вроде


<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"
></script>
<script type="text/javascript">
$(document).ready(function() {
var click = 0;
$('#language').click(function() {
if(click == 0){
$('#language input').css('right', '28px');
$(this).css('right', '4px');
click = 1;
}else{
$('#language input').css('right', '0px');
$(this).css('right', '0px');
click = 0;
}
});
});
</script>

как-то так

Edited by Быколай
Link to comment
Share on other sites

  • 0

записывайте в переменную флаг, о том, что событие произошло. по этому значению вычисляйте второй клик. что-то вроде


<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"
></script>
<script type="text/javascript">
$(document).ready(function() {
var click = 0;
$('#language').click(function() {
if(click == 0){
$('#language input').css('right', '28px');
$(this).css('right', '4px');
click = 1;
}else{
$('#language input').css('right', '0px');
$(this).css('right', '0px');
click = 0;
}
});
});
</script>

как-то так

Спасибо большое)

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