在textarea中屏蔽js的某個function的javascript代碼

來源:互聯網
上載者:User

有一個textarea,我想在這焦點在這個textarea中的時候屏蔽某個function,
就是使這個function失效,移出焦點後重新使其有效,請問該怎樣實現???
1樓
在你的那個函數裡通過 document.activeElement 得到當前網頁聚焦的那個控制項, 判斷這個若是這個 textarea 則跳出不執行本函數
2樓
樓上正解,向meizz學習
3樓
to meizz(梅花雪)
我是用
document.activeElement.tagName.toLowerCase()!='textarea'
來判斷textarea控制項的,可是頁面上有多個textarea,
我只想在其中一個textarea中屏蔽此function,請問該如何做???
更麻煩的是另外有個hidden的textarea,除了屬性是readonly外,其他屬性和此textarea完全相同,請問又該如何????
4樓
使用onfocus,onblur事件作函數開關
<body>
<script language="JavaScript">
function disablefun()
{
window.myfun = null;
}
function enablefun()
{
window.myfun = function()
{
showid.innerHTML += "i'm active<br>";
};
}
function myfun()
{
showid.innerHTML += "i'm active<br>";
}
</script>
<form method="get" name=search id=search target="_blank">
每次鍵入內容均觸發myfun函數<br>
<textarea name="txa" rows="5" cols="20" onkeydown="if(myfun)myfun()"></textarea>
<hr>
<br>
每次按鍵均不觸發myfun函數(聚焦時失效,失焦時有效)<br>
<textarea name="txa" rows="5" cols="20" onfocus="disablefun()" onblur="enablefun()" onkeydown="if(myfun)myfun()"></textarea>
</form>
<div id=showid>
</div>
</body>
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.