とonHover効果私はホバー効果を作成しようとしていますので、ユーザーがボタンの上に彼のマウスを移動したときに、テキストエリアは、ユーザーがフォームを送信する前にテキストを挿入することができ、ボタンの下に表示されます。それが開かれた後、ユーザーがテキストエリアを離れた場合、私は私が以下で使用したコードに問題がある....それが再び閉じられたいというユーザーは、テキストを挿入するために(ボタン領域を離れるとテキストエリア)が消えます。助けていただければ幸いです!TEXTAREA
私は、次のコードを使用している(また、jsbinで、次の例を見つけることができます):
CSS
#send-container {
position:relative;
}
#text-container {
display:none;
background-color:#FEF9F4;
position: absolute;
z-index: 1000;
top:28px;
left:0;
padding:2px;
}
textarea {
width: 150px;
height: 50px;
resize: none;
border: 3px solid #cccccc;
padding: 5px;
font-family: Tahoma, sans-serif;
}
HTML
<div id="send-container">
<input type="button" value="Button">
<div id="text-container">
<textarea></textarea>
</div>
</div>
JSを(jQueryのを)
回の$("#send-container").live("mouseenter",
function() {
$("#text-container" , $(this)).show();
});
$("#send-container").live("mouseleave",
function() {
$("#text-container" , $(this)).hide();
}
);
ありがとう!
joel