<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[TNF : Tatter Network Foundation forum - 백스페이스 눌렀을때 이벤트]]></title>
	<link rel="self" href="http://forum.tattersite.com/ko/extern.php?action=feed&amp;tid=1815&amp;type=atom"/>
	<updated>2006-10-26T08:26:44Z</updated>
	<generator>PunBB</generator>
	<id>http://forum.tattersite.com/ko/viewtopic.php?id=1815</id>
		<entry>
			<title type="html"><![CDATA[RSS 답글: 백스페이스 눌렀을때 이벤트]]></title>
			<link rel="alternate" href="http://forum.tattersite.com/ko/viewtopic.php?pid=10417#p10417"/>
			<content type="html"><![CDATA[<div class="quotebox"><cite>Peris 작성:</cite><blockquote><p>IE 6.0님께서는 소문자로 써놔도 알아서 대문자로 바꿔주신답니다.</p></blockquote></div><p>역시 IE사마!!</p>]]></content>
			<author>
				<name><![CDATA[나니]]></name>
				<uri>http://forum.tattersite.com/ko/profile.php?id=134</uri>
			</author>
			<updated>2006-10-26T08:26:44Z</updated>
			<id>http://forum.tattersite.com/ko/viewtopic.php?pid=10417#p10417</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[RSS 답글: 백스페이스 눌렀을때 이벤트]]></title>
			<link rel="alternate" href="http://forum.tattersite.com/ko/viewtopic.php?pid=10416#p10416"/>
			<content type="html"><![CDATA[<p>IE 6.0님께서는 소문자로 써놔도 알아서 대문자로 바꿔주신답니다.</p>]]></content>
			<author>
				<name><![CDATA[Peris]]></name>
				<uri>http://forum.tattersite.com/ko/profile.php?id=40</uri>
			</author>
			<updated>2006-10-26T08:12:49Z</updated>
			<id>http://forum.tattersite.com/ko/viewtopic.php?pid=10416#p10416</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[RSS 답글: 백스페이스 눌렀을때 이벤트]]></title>
			<link rel="alternate" href="http://forum.tattersite.com/ko/viewtopic.php?pid=10414#p10414"/>
			<content type="html"><![CDATA[<div class="codebox"><pre><code>&lt;script language=&quot;JavaScript&quot;&gt;
    function keycheck()
    {
        if(event.keyCode == 8 &amp;&amp; (event.srcElement.tagName!=&quot;INPUT&quot; &amp;&amp; event.srcElement.type!=&quot;TEXT&quot;) &amp;&amp; event.srcElement.tagName!=&quot;TEXTAREA&quot;){
            alert(&#039;백스페이스를 허공에서 누르셨군요.~~&#039;);
            return false; 
        }
    document.onkeydown=keycheck;
    }
&lt;/script&gt;</code></pre></div><p>INPUT / TEXT / TEXTAREA - &gt; input / text / textarea</p>]]></content>
			<author>
				<name><![CDATA[나니]]></name>
				<uri>http://forum.tattersite.com/ko/profile.php?id=134</uri>
			</author>
			<updated>2006-10-26T08:06:03Z</updated>
			<id>http://forum.tattersite.com/ko/viewtopic.php?pid=10414#p10414</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[RSS 답글: 백스페이스 눌렀을때 이벤트]]></title>
			<link rel="alternate" href="http://forum.tattersite.com/ko/viewtopic.php?pid=10409#p10409"/>
			<content type="html"><![CDATA[<div class="quotebox"><cite>inureyes 작성:</cite><blockquote><div class="quotebox"><cite>시루 작성:</cite><blockquote><p>글지우다가 백스페이스를 눌러버려서 페이지가 이동해 글을 날려버린적이 많습니다.<br />백스페이스를 눌렀을때도 페이지 이동여부를 물어보는게 괜찮다고 생각하는데..</p><p>이게 구현이 가능한지 모르겠네요 <img src="http://forum.tattersite.com/ko/img/smilies/big_smile.png" width="15" height="15" alt="big_smile" /></p></blockquote></div><p>포커싱이 어디에 있는가에 따라 다릅니다. <img src="http://forum.tattersite.com/ko/img/smilies/smile.png" width="15" height="15" alt="smile" /></p><p>브라우저 편집창 밖에 포커스가 있을 경우, 백스페이스 입력시 물어보도록 하는 것은 현실적으로 힘듭니다. <img src="http://forum.tattersite.com/ko/img/smilies/smile.png" width="15" height="15" alt="smile" /> 물론 편집창 안이라면 글자 지우기가 되겠지만요.^^</p><p>자바스크립트를 사용한 방법이 있지 않나 싶기도 한데, 정확히는 모르겠네요 <img src="http://forum.tattersite.com/ko/img/smilies/roll.png" width="15" height="15" alt="roll" /> 그게 된다면 야구홈페이지계에 한 번 들어오게 하면 못 나가게 하는 새바람이 불 지도 모르겠습니다 <img src="http://forum.tattersite.com/ko/img/smilies/lol.png" width="15" height="15" alt="lol" /></p></blockquote></div><p>요넘으로 어찌 처리하면 될듯 싶습니다. 부랴부랴 잔머리를 굴려봤습니다.<br /></p><div class="codebox"><pre><code>&lt;script language=&quot;JavaScript&quot;&gt;
    function keycheck()
    {
        if(event.keyCode == 8 &amp;&amp; (event.srcElement.tagName!=&quot;INPUT&quot; &amp;&amp; event.srcElement.type!=&quot;TEXT&quot;) &amp;&amp; event.srcElement.tagName!=&quot;TEXTAREA&quot;){
            alert(&#039;백스페이스를 허공에서 누르셨군요.~~&#039;);
            return false; 
        }
    document.onkeydown=keycheck;
    }
&lt;/script&gt;</code></pre></div><p>FF에서도 되겠끔 체크해서 메세지만 띄워주고 false시켜버리면 해소되지 않을까요.. 제 한계는 여기까지...</p>]]></content>
			<author>
				<name><![CDATA[jparker]]></name>
				<uri>http://forum.tattersite.com/ko/profile.php?id=10</uri>
			</author>
			<updated>2006-10-26T05:48:34Z</updated>
			<id>http://forum.tattersite.com/ko/viewtopic.php?pid=10409#p10409</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[RSS 답글: 백스페이스 눌렀을때 이벤트]]></title>
			<link rel="alternate" href="http://forum.tattersite.com/ko/viewtopic.php?pid=10403#p10403"/>
			<content type="html"><![CDATA[<div class="quotebox"><cite>시루 작성:</cite><blockquote><p>글지우다가 백스페이스를 눌러버려서 페이지가 이동해 글을 날려버린적이 많습니다.<br />백스페이스를 눌렀을때도 페이지 이동여부를 물어보는게 괜찮다고 생각하는데..</p><p>이게 구현이 가능한지 모르겠네요 <img src="http://forum.tattersite.com/ko/img/smilies/big_smile.png" width="15" height="15" alt="big_smile" /></p></blockquote></div><p>포커싱이 어디에 있는가에 따라 다릅니다. <img src="http://forum.tattersite.com/ko/img/smilies/smile.png" width="15" height="15" alt="smile" /></p><p>브라우저 편집창 밖에 포커스가 있을 경우, 백스페이스 입력시 물어보도록 하는 것은 현실적으로 힘듭니다. <img src="http://forum.tattersite.com/ko/img/smilies/smile.png" width="15" height="15" alt="smile" /> 물론 편집창 안이라면 글자 지우기가 되겠지만요.^^</p><p>자바스크립트를 사용한 방법이 있지 않나 싶기도 한데, 정확히는 모르겠네요 <img src="http://forum.tattersite.com/ko/img/smilies/roll.png" width="15" height="15" alt="roll" /> 그게 된다면 야구홈페이지계에 한 번 들어오게 하면 못 나가게 하는 새바람이 불 지도 모르겠습니다 <img src="http://forum.tattersite.com/ko/img/smilies/lol.png" width="15" height="15" alt="lol" /></p>]]></content>
			<author>
				<name><![CDATA[inureyes]]></name>
				<uri>http://forum.tattersite.com/ko/profile.php?id=2</uri>
			</author>
			<updated>2006-10-26T05:18:45Z</updated>
			<id>http://forum.tattersite.com/ko/viewtopic.php?pid=10403#p10403</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[RSS 답글: 백스페이스 눌렀을때 이벤트]]></title>
			<link rel="alternate" href="http://forum.tattersite.com/ko/viewtopic.php?pid=10399#p10399"/>
			<content type="html"><![CDATA[<p>음? 그렇게 안되던가요?<br />전 그때마다 일일이 뜨던데요;;</p>]]></content>
			<author>
				<name><![CDATA[나니]]></name>
				<uri>http://forum.tattersite.com/ko/profile.php?id=134</uri>
			</author>
			<updated>2006-10-26T04:35:32Z</updated>
			<id>http://forum.tattersite.com/ko/viewtopic.php?pid=10399#p10399</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[백스페이스 눌렀을때 이벤트]]></title>
			<link rel="alternate" href="http://forum.tattersite.com/ko/viewtopic.php?pid=10398#p10398"/>
			<content type="html"><![CDATA[<p>글지우다가 백스페이스를 눌러버려서 페이지가 이동해 글을 날려버린적이 많습니다.<br />백스페이스를 눌렀을때도 페이지 이동여부를 물어보는게 괜찮다고 생각하는데..</p><p>이게 구현이 가능한지 모르겠네요 <img src="http://forum.tattersite.com/ko/img/smilies/big_smile.png" width="15" height="15" alt="big_smile" /></p>]]></content>
			<author>
				<name><![CDATA[lude]]></name>
				<uri>http://forum.tattersite.com/ko/profile.php?id=614</uri>
			</author>
			<updated>2006-10-26T04:32:20Z</updated>
			<id>http://forum.tattersite.com/ko/viewtopic.php?pid=10398#p10398</id>
		</entry>
</feed>
