span 에 스타일 문의 드립니다 마우스 오버시 정보
span 에 스타일 문의 드립니다 마우스 오버시본문
<span onMouseOver="tab_img_change(<?=$i?>);" style="cursor:hand;">
위의 소스를 사용중인데요..
마우스 오버하면 커서모양 나오는건 알겠는데요.. 밑줄은 어떻게 표시하나요?
위의 소스를 사용중인데요..
마우스 오버하면 커서모양 나오는건 알겠는데요.. 밑줄은 어떻게 표시하나요?
댓글 전체

간단한방법으로
<style type='text/css'>
.mouseon {cursor:pointer;text-decoration:underline;}
</style>
<span onMouseOver="tab_img_change(<?=$i?>);this.className='mouseon';" onmouseout="this.className='';">
<style type='text/css'>
.mouseon {cursor:pointer;text-decoration:underline;}
</style>
<span onMouseOver="tab_img_change(<?=$i?>);this.className='mouseon';" onmouseout="this.className='';">