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