function my_scripts() {
wp_enqueue_script( 'new-1', get_site_url() . '/wp-content/plugins/domain-plugin/new1.js', array(
'jquery' ),'',true );
}
add_action( 'wp_enqueue_scripts', 'my_scripts' );
这是我的代码我正在做的事情。它不包括我的 js 文件到管理端的插件以下是我的 js 文件代码
function change_dom_field()
{
var x = document.getElementById("email");
var y = document.getElementById("domain");
var z = document.getElementById("dom_button");
var a = document.getElementById("mail_button");
document.getElementById("flag").value="email";
if (x.style.display === "none") {
x.style.display = "block";
y.style.display = "none";
z.style.display = "block";
a.style.display = "none";
}
//alert('abc');
}