ページにiframeがあります。iframe では、フォーム タグにほとんど入力がなく、ajax 経由でより多くの入力をロードできます。
ぼかしまたはフォーカス イベントをこの入力にバインドしようとしていますが、機能しません。クリックなどの他のイベントは非常にうまく機能します。
$(function () {
$("iframe").each(function () {
$(this).load(function () {
$(this).contents().find("input").focus(function() { // works but this is only for existing inputs
alert(1);
});
$(this).contents().find("form").on("click", "input", function (e) { // works
alert(1);
});
$(this).contents().find("form").on("focus", "input", function (e) { // doesnt work
alert(1);
});
});
});
});
前もって感謝します。