AJAX 콜백에서 사용자 정의 JS 함수를 호출 할 수 있습니까?
function MY_MODULE_ajax_callback() {
// Define a new array to hold our AJAX commands.
$ajax_commands = array();
// Create a new AJAX command that replaces the #page text with our own text.
$ajax_commands[] = [CUSTOM JS FUNCTION]
// Return our commandS
return array('#type' => 'ajax','#commands' => $commands);
}
그렇습니다. 또는 적어도 가능해야합니다. 특별한 문제가 있습니까?
—
Mołot