English 中文(简体)
WordPress中未加载JavaScript
原标题:JavaScript doesn t load in WordPress

我最近一直在使用wordpress模板,但与这里的javascript相比,我遇到了一个巨大的问题。

我尝试过:

<?php wp_enqueue_script( tools ); ?>

 <script src="/(path)/tools" type="text/javascript"></script>

但奇怪的是,我只是简单地说:

<script type="text/javascript">
alert("hello world");    
</script>

和 it works just fine

编辑:我在头文件中执行此操作

问题回答

在将脚本排入队列之前,您需要将其注册到:http://codex.w或dpress.或g/Function_Reference/wp_register_script

所以你会

wp_register_script("tools", get_bloginfo("stylesheet_direct或y") . "/myscript.js");
wp_enqueue_script("tools");

还记得将DOM加载后应该运行的任何JS放在

$(document).ready(function() { //code here });

window.onload = function() { //code here }




相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.

热门标签