我正在尝试在Wordpress中使用keith wood的jquery倒计时器而没有太多运气。我在非wordpress网站上使用它没有任何问题。
以下是我的wordpress header.php,而计时器根本就没有显示。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<?php wp_enqueue_script('jquery'); ?>
<?php wp_head(); ?>
<link rel="stylesheet" type="text/css" href="<?php bloginfo('template_url'); ?>/css/jquery.countdown.css" />
<script src="<?php bloginfo('template_url'); ?>/js/jquery.countdown.js" type="text/javascript"></script>
<link href="<?php bloginfo( 'stylesheet_url' ); ?>" rel="stylesheet" type="text/css" />
<script type="text/javascript">
jQuery(function () {
var endOfTrading = new Date ( 'June 30, 2011 18:00:00' );
jQuery('#defaultCountdown').countdown({until: endOfTrading});
});
</script>
<title>Big Splash</title>
</head>
<body>
<div id="header">
<div id="header-content">
<img src="<?php bloginfo('template_url'); ?>/images/big-splash-logo.png" width="458" height="300" alt="The Big Splash" />
<div id="defaultCountdown" class="hasCountdown"></div>
</div>
<?php wp_nav_menu(); ?>
</div>
<div id="main">
任何想法我做错了,因为它让我疯狂地试图解决它。
答案 0 :(得分:1)
尝试这个
var $j = jQuery.noConflict();
$j(function(){
var endOfTrading = new Date ( 'June 30, 2011 18:00:00' );
$j('#defaultCountdown').countdown({until: endOfTrading});
});
你需要将jquery设置为noconflict ...希望这能解决它。 : - )
答案 1 :(得分:-1)
事实证明我需要从div中删除class =“hasCountdown”。现在工作正常。