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.
私はhttp://onehackoranother.com/projects/jquery/boxy/を使用しています
Escキーを押してボックスウィンドウを閉じる方法は?
if (this.options.closeable) { jQuery(document.body).bind('keypress.boxy', function(evt) { var key = evt.which || evt.keyCode; if (key == 27) { self.hide(); jQuery(document.body).unbind('keypress.boxy'); } }); }
<P:focusタグは通常のフォームでは正常に機能しますが、フォームがの2番目のタブにあるp:tabView場合は機能しません。
<P:focus
p:tabView
タブが選択されたときにフォームの最初の入力のフォーカスを設定する解決策は何ですか?