トグルを使用してクリックして表示し、クリックしてテキストを非表示にする方法に関する投稿 ( How to change toggle text on show hide using javascript ) を読んでとても興奮しましたが、コードを動作させることができませんでした。下線付きのハイパーリンクをクリックすると、テキストが表示されません。
In function.php:
add_action('wp_enqueue_scripts', 'my_scripts_method');
function my_scripts_method() {
wp_enqueue_script('SHOWME',get_template_directory_uri() . '/admin/wp-
includes/js/jquery/SHOWME.js');
}
In ftp drive:
jQuery(document).ready(function($)
{
$(function showme(id)) {
var divid = $(document.getElementById(id));
$(if (divid.style.display == 'block') divid.style.display = 'none');
$(else divid.style.display = 'block');
}
array('jquery')
);
}
});
HTML in page:
<a onclick="SHOWME('list');" href="#"><h3>Air Barrier Association of America (ABAA)
Certification Training</h3>
</a>
<div class="showMe" style="display: none;">This is a widget</div>
<div class="showMe" style="display: none;">This is a widget</div>
<div class="showMe" style="display: none;">Self Adhered & Fluid Applied Installer
Training</div>