回显线(重新连接到jquery)显示在浏览器中

时间:2015-04-03 11:34:34

标签: php jquery

与@Zain在this thread中解释的问题完全相同。 我尝试了以下代码:

efunction wp_func_jquery() {
  // Get jQuery from Google CDN
  echo "https://ajax.googleapis.com/ajax/libs/jquery/1.6.3/jquery.min.js";
}
add_action('wp_footer', 'wp_func_jquery');

错误消失,页面正确加载。但仍然在页面的最后出现以下行: https://ajax.googleapis.com/ajax/libs/jquery/1.6.3/jquery.min.js

你可以check it out here, to see what I mean.
我怎样才能摆脱这个问题呢? 提前谢谢,
彼得

1 个答案:

答案 0 :(得分:1)

尝试一下,忘掉<script>代码

efunction wp_func_jquery() {
  // Get jQuery from Google CDN
  echo "<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.6.3/jquery.min.js' type='text/javascript'></script>";
}
add_action('wp_footer', 'wp_func_jquery');