Jquery 디 스 플레이,요소 숨 기기 및 삭제 스타일 추가

 
<script type="text/javascript">
$(function () {
// input label
$("input").focus(function ()
{
$(this).siblings("label").hide();
});
});
$(function () {
//input
$("input").blur(function ()
{
//input label
$(this).siblings("label").hide();
// input "" label
if ($(this).val() == "")
{
$(this).siblings("label").show();
}
});
});
$(function(){
// li span
if($("li").is(":has(span)"))
{
// li "" class active
if($(this).val()=="" )
{
$(this).removeClass(".active");
}
}});
</script>

좋은 웹페이지 즐겨찾기