クリック時の入力フォーカスとダブルクリック時のフォーカス入力を防止したい。
何かのようなもの....
$('input').click(function) {
$(this)preventFocus();
});
$('input').dblclick(function) {
$(this)focus();
});
それとも、if ステートメントを使用する必要がありますか?
クリック時の入力フォーカスとダブルクリック時のフォーカス入力を防止したい。
何かのようなもの....
$('input').click(function) {
$(this)preventFocus();
});
$('input').dblclick(function) {
$(this)focus();
});
それとも、if ステートメントを使用する必要がありますか?