我正在为此使用jquery,请将此代码放入函数中。主题的php。
add_action(\'admin_head\',\'custom_handler_for_pass_js\');
if ( ! function_exists( \'custom_handler_for_pass_js\' ) ) {
function custom_handler_for_pass_js()
{
?>
<script type="text/javascript">
jQuery( document ).ready(function() {
jQuery(\'.wp-generate-pw\').click(function(){
jQuery("#pass1").keyup(function(){
if(jQuery( "#pass1" ).hasClass( "strong" )){
jQuery(\'#submit\').prop(\'disabled\', false);
}else{
jQuery(\'#submit\').prop(\'disabled\', true);
}
});
});
});
</script>
<?php
}}
此代码正在工作,如果它在您的WP中不工作,请检查类名并确保它们匹配。如果有任何问题,请告诉我。