我有 index.php 并将通过单击按钮将 index-edit.php 加载到 index.php 中<div class="edit-wrapper"> </div>
。我在 index.php 中有一些输入,在 index-edit.php 中有一些输入。我想为.active
它们添加类以关注焦点,但 jQuery 不会将.active
类添加到 index-edit.php 中的类,但其余部分(不是 index-edit.php)可以正常工作。
看看我的 script.js。
$( input ).focusout( function() {
$( this ).addClass('active');
});
$( document ).on( "click", ".btn", function() {
$('.edit-wrapper').load('index-edit.php');
});