我对Wordpress非常陌生,我已经提出要帮助一个使用它的项目。
在我正在创建的新页面中,我需要使用javascript/jQuery动态写出html-它似乎不起作用?我相信我读到有一些特别的事情需要做,但我不明白。我试着改变$
到jQuery
, 但这也没用。
<script type="text/javascript">
$(document).ready(function(){
alert(\'hoi\');
jQuery.ajax({
type: "GET",
url: "link-here",
dataType: "text",
success: function(data) {alert(CSVToArray(data));}
error: function(){ alert(\'error\');}
});
</script>
我在上面有这个
alert
甚至都没打电话。我怎样才能让它工作?
Edit 除了管理页面外,jQuery似乎已为所有页面加载-正确吗?
//jQuery Insert From Google
if (!is_admin()) add_action("wp_enqueue_scripts", "my_jquery_enqueue", 11);
function my_jquery_enqueue() {
wp_deregister_script(\'jquery\');
wp_register_script(\'jquery\', "http" . ($_SERVER[\'SERVER_PORT\'] == 443 ? "s" : "") . "://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js", false, null);
wp_enqueue_script(\'jquery\');
}
Edit Two 看起来我写的代码正在打包
<p>
标签。这一定意味着脚本不属于
New Page
. 代码应该放在哪里?