vdf__ Posted April 10, 2015 Report Share Posted April 10, 2015 Olá pessoal, Estou começando com o jquery, e queria fazer o seguinte... Tenho uma lista de itens ex: <div> item 1 <span > editar excluir</span></div> <div> item 2 <span > editar excluir</span></div> <div> item 3 <span > editar excluir</span></div> <div> item 4 <span > editar excluir</span></div> <div> item 5 <span > editar excluir</span></div> <div> item 6 <span > editar excluir</span></div> ........ Ao lado de cada item tenho botões de excluir e editar o item, porém eu preciso que esses botões só apareçam quando passar o mouse na div. alguém pode me dar uma luz? Quote Link to comment Share on other sites More sharing options...
0 wootzor Posted April 10, 2015 Report Share Posted April 10, 2015 Seria algo assim? $(function () { $("button").attr("hidden", "true"); $("div").mouseenter(function () { $(this).children("button").removeAttr("hidden"); }) .mouseleave(function () { $(this).children("button").attr("hidden", "true"); }); }); Quote Link to comment Share on other sites More sharing options...
0 vdf__ Posted April 10, 2015 Author Report Share Posted April 10, 2015 Cara exatamente isso.... perfeito! Te agradeço muito! velew! Quote Link to comment Share on other sites More sharing options...
Question
vdf__
Olá pessoal,
Estou começando com o jquery, e queria fazer o seguinte...
Tenho uma lista de itens ex:
<div> item 1 <span > editar excluir</span></div>
<div> item 2 <span > editar excluir</span></div>
<div> item 3 <span > editar excluir</span></div>
<div> item 4 <span > editar excluir</span></div>
<div> item 5 <span > editar excluir</span></div>
<div> item 6 <span > editar excluir</span></div>
........
Ao lado de cada item tenho botões de excluir e editar o item,
porém eu preciso que esses botões só apareçam quando passar o mouse na div.
alguém pode me dar uma luz?
Link to comment
Share on other sites
2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.