我使用它将我的脚本和样式挂接到我的插件:
add_action(\'admin_init\', \'the_box_init\' );
// Init plugin options to white list our options
function the_box_init(){
register_setting( \'the_box_options\', \'the_box\', \'the_box_validate\' );
wp_enqueue_style( \'myprefix-style\', plugins_url(\'theboxstyle.css\', __FILE__) );
wp_enqueue_script( \'myprefix-script\', plugins_url(\'theboxjs.js\', __FILE__) ); //this hook my custom js, preferrably which contents almost my jquery codes.
}
但是,jQuery代码不起作用;即使是这个简单的代码:
$( document ).ready(function() {
alert("asdasd");
});
只有普通JavaScript才起作用。
您认为在我的实现中,jQuery不起作用的地方出了什么问题?
我愿意接受任何建议、建议和想法。