묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
input 버튼 클릭시 점선?태두리생기는거 한번에 없애는 방법 없을까요?^^
2003.11.29 02:55
이미지는 있는데.. input은 잘 되지 않네요.. 방법이 있을까요?
// 이미지 링크 태두리 없애기
<!--
function bluring()
{
if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG") document.body.focus();
}
document.onfocusin=bluring;
// -->
어떤 분은
// 이미지 링크 태두리 없애기
<!--
function bluring()
{
if(event.srcElement.tagName=="A"||event.srcElement.tagName=="INPUT") document.body.focus();
}
document.onfocusin=bluring;
// -->
하면 된다고 하시던데 되긴되는데.. 찾아보기라던지.. 그런 버튼들에는 무반응이더군요.. 더군다나 아웃로그인도 잘안돼고..
호출이 먹히지 않는듯 하더라구용..
감사합니다(__)
// 이미지 링크 태두리 없애기
<!--
function bluring()
{
if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG") document.body.focus();
}
document.onfocusin=bluring;
// -->
어떤 분은
// 이미지 링크 태두리 없애기
<!--
function bluring()
{
if(event.srcElement.tagName=="A"||event.srcElement.tagName=="INPUT") document.body.focus();
}
document.onfocusin=bluring;
// -->
하면 된다고 하시던데 되긴되는데.. 찾아보기라던지.. 그런 버튼들에는 무반응이더군요.. 더군다나 아웃로그인도 잘안돼고..
호출이 먹히지 않는듯 하더라구용..
감사합니다(__)
INPUT 버튼을 클릭했을때 생기는 점선을 없앨때는 따로 onfocus="this.blur()" 또는 hidefocus="true" 를 사용하여 없애는 방법이 있습니다.
<input type="button" value="버튼" onfocus="this.blur()">
또는
<input type="button" value="버튼" hidefocus="true">
<input type="radio" name="radio" hidefocus="true">
<input type="checkbox" name="checkbox" value="checkbox" hidefocus="true">