5
동작 첨부 기능이 두 번 첨부되는 것을 방지하는 방법은 무엇입니까?
on일부 확인란에 추가되는 동작이 있습니다. (function($) { Drupal.behaviors.mymodule = { attach: function (context, settings) { $('.skip-line', context).on('change', function(){ // some code if ( confirm(Drupal.t('Apply to all languages?')) ) { // applying... } }); } }; })(jQuery); 잘 작동하지만 확인란은 AJAX로드 부분에 있습니다. 양식의 해당 부분을 다시로드하면 해당 부분을 클릭하면 확인 …
11
javascript