为了澄清我的评论,这与我所说的更接近。。。
// plugins/wpse392844/wpse392844.php
function wpse392844_enqueue_assets() {
wp_enqueue_script(
\'wpse392844-frontend\',
plugins_url( \'assets/js/frontend.js\', __FILE__ )
);
}
add_action( \'wp_enqueue_scripts\', \'wpse392844_enqueue_assets\' );
// plugins/wpse392844/assets/js/frontend.js
function thfull() {
document.getElementById(\'thf\').style.maxHeight = \'1000px\';
}
(我们正在定义
thfull()
使用JavaScript而不是PHP的函数,以便浏览器能够了解并使用它。PHP只是确保浏览器加载JS)