Efeito jQuery - método toggle (switch)
Descrição
o toggle( switch )alterna o método exibindo cada um do conjunto de elementos correspondentes com base no parâmetro passado. Se o parâmetro true mostra todos os elementos, false oculta todos os elementos.
Sintaxe
Aqui está a sintaxe simples para usar este método -
selector.toggle( switch );
Parâmetros
Aqui está a descrição de todos os parâmetros usados por este método -
switch - Um interruptor para ativar a exibição.
Exemplo
A seguir está um exemplo simples mostrando o uso desse método -
<html>
<head>
<title>The jQuery Example</title>
<script type = "text/javascript"
src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js">
</script>
<script type = "text/javascript" language = "javascript">
$(document).ready(function() {
$("#false").click(function(){
$(".target").toggle(false);
});
$("#true").click(function(){
$(".target").toggle(true);
});
});
</script>
<style>
p {background-color:#bca; width:250px; border:1px solid green;}
</style>
</head>
<body>
<p>Click on any of the following buttons:</p>
<button id = "false"> False Switch </button>
<button id = "true"> True Switch </button>
<div class = "target">
<img src = "../images/jquery.jpg" alt = "jQuery" />
</div>
</body>
</html>
Isso produzirá o seguinte resultado -
jquery-effects.htm