Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
点击输入文字![输入框][1]
在此文本区域将打开之后
![文本区域][2]
3)这是我的文档,我想在此文本区域之外单击它应该隐藏。
![我的整个文档][3]
我很确定这是你想要做的..
$('input[type="text"]').bind('focus', function(){ $('textarea').show(); }).bind('blur', function(){ $('textarea').hide(); });