<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[TNF : Tatter Network Foundation forum - 백스페이스 눌렀을때 이벤트]]></title>
		<link>http://forum.tattersite.com/ko/viewtopic.php?id=1815</link>
		<description><![CDATA[백스페이스 눌렀을때 이벤트 의 최근 RSS 글들.]]></description>
		<lastBuildDate>Thu, 26 Oct 2006 08:26:44 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[RSS 답글: 백스페이스 눌렀을때 이벤트]]></title>
			<link>http://forum.tattersite.com/ko/viewtopic.php?pid=10417#p10417</link>
			<description><![CDATA[<div class="quotebox"><cite>Peris 작성:</cite><blockquote><p>IE 6.0님께서는 소문자로 써놔도 알아서 대문자로 바꿔주신답니다.</p></blockquote></div><p>역시 IE사마!!</p>]]></description>
			<author><![CDATA[null@example.com (나니)]]></author>
			<pubDate>Thu, 26 Oct 2006 08:26:44 +0000</pubDate>
			<guid>http://forum.tattersite.com/ko/viewtopic.php?pid=10417#p10417</guid>
		</item>
		<item>
			<title><![CDATA[RSS 답글: 백스페이스 눌렀을때 이벤트]]></title>
			<link>http://forum.tattersite.com/ko/viewtopic.php?pid=10416#p10416</link>
			<description><![CDATA[<p>IE 6.0님께서는 소문자로 써놔도 알아서 대문자로 바꿔주신답니다.</p>]]></description>
			<author><![CDATA[null@example.com (Peris)]]></author>
			<pubDate>Thu, 26 Oct 2006 08:12:49 +0000</pubDate>
			<guid>http://forum.tattersite.com/ko/viewtopic.php?pid=10416#p10416</guid>
		</item>
		<item>
			<title><![CDATA[RSS 답글: 백스페이스 눌렀을때 이벤트]]></title>
			<link>http://forum.tattersite.com/ko/viewtopic.php?pid=10414#p10414</link>
			<description><![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>]]></description>
			<author><![CDATA[null@example.com (나니)]]></author>
			<pubDate>Thu, 26 Oct 2006 08:06:03 +0000</pubDate>
			<guid>http://forum.tattersite.com/ko/viewtopic.php?pid=10414#p10414</guid>
		</item>
		<item>
			<title><![CDATA[RSS 답글: 백스페이스 눌렀을때 이벤트]]></title>
			<link>http://forum.tattersite.com/ko/viewtopic.php?pid=10409#p10409</link>
			<description><![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>]]></description>
			<author><![CDATA[null@example.com (jparker)]]></author>
			<pubDate>Thu, 26 Oct 2006 05:48:34 +0000</pubDate>
			<guid>http://forum.tattersite.com/ko/viewtopic.php?pid=10409#p10409</guid>
		</item>
		<item>
			<title><![CDATA[RSS 답글: 백스페이스 눌렀을때 이벤트]]></title>
			<link>http://forum.tattersite.com/ko/viewtopic.php?pid=10403#p10403</link>
			<description><![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>]]></description>
			<author><![CDATA[null@example.com (inureyes)]]></author>
			<pubDate>Thu, 26 Oct 2006 05:18:45 +0000</pubDate>
			<guid>http://forum.tattersite.com/ko/viewtopic.php?pid=10403#p10403</guid>
		</item>
		<item>
			<title><![CDATA[RSS 답글: 백스페이스 눌렀을때 이벤트]]></title>
			<link>http://forum.tattersite.com/ko/viewtopic.php?pid=10399#p10399</link>
			<description><![CDATA[<p>음? 그렇게 안되던가요?<br />전 그때마다 일일이 뜨던데요;;</p>]]></description>
			<author><![CDATA[null@example.com (나니)]]></author>
			<pubDate>Thu, 26 Oct 2006 04:35:32 +0000</pubDate>
			<guid>http://forum.tattersite.com/ko/viewtopic.php?pid=10399#p10399</guid>
		</item>
		<item>
			<title><![CDATA[백스페이스 눌렀을때 이벤트]]></title>
			<link>http://forum.tattersite.com/ko/viewtopic.php?pid=10398#p10398</link>
			<description><![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>]]></description>
			<author><![CDATA[null@example.com (lude)]]></author>
			<pubDate>Thu, 26 Oct 2006 04:32:20 +0000</pubDate>
			<guid>http://forum.tattersite.com/ko/viewtopic.php?pid=10398#p10398</guid>
		</item>
	</channel>
</rss>
