why does not work ajax that add_action registered in wordpress

The AJAX request is a separate request from the one that renders your page. Your AJAX handler is getting registered on the request that serves the page, but not the AJAX request, which is the one that matters.

Move your add_action and function to your theme’s functions.php file, which loads on all requests.