$is not a functionが解決しました
1183 ワード
ネットで資料を調べたり、試したりして、やっと原因を見つけた.
1)ネット上の解釈:
If you are trying to add your own jQuery code to WordPress, and have had the error “$ is not a function” show up on Firebug, here is the fix:
Convert all dollar signs ($) to ‘jQuery’
The dollar sign is reserved in WordPress for the Prototype library, which is why it errors out. For example, instead of:
1
2
3
1
2
3
2)上記の方法では効果がない.Error msgは:jQuery(***)になります.dialog is not a function.
午後の努力はjsの衝突によるものかもしれないと思った.1行の行がコードを削除して、次の行であることを発見しました.方法の衝突ではなく、引用の衝突だったのか?!
" ". 内部Frameのjspでは、このように1行削除すればOK.外部から引用されたのかもしれないが、削除後のjQueryの方法はすべて正常になった.
1)ネット上の解釈:
If you are trying to add your own jQuery code to WordPress, and have had the error “$ is not a function” show up on Firebug, here is the fix:
Convert all dollar signs ($) to ‘jQuery’
The dollar sign is reserved in WordPress for the Prototype library, which is why it errors out. For example, instead of:
1
2
3
$().ready(
function
() {
$(
"#select_me"
).show();
});
Change it to: 1
2
3
jQuery().ready(
function
() {
jQuery(
"#select_me"
).show();
});
2)上記の方法では効果がない.Error msgは:jQuery(***)になります.dialog is not a function.
午後の努力はjsの衝突によるものかもしれないと思った.1行の行がコードを削除して、次の行であることを発見しました.方法の衝突ではなく、引用の衝突だったのか?!
"