我有一个鼠标悬停功能,应该为我的viewport元素添加一个类,但是当我鼠标悬停时我在firebug中出错:TypeError:jQuery(...)。addclass不是函数。
HTML是:
<!DOCTYPE html>
<html>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<title><?php wp_title('|','true','right'); ?><?php bloginfo('name'); ?></title>
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
<?php wp_head(); ?>
</head>
<body <?php body_class($class); ?>>
<header>
<div class="main-logo">
<div id="site-title">
</div><!--.site-title-->
</div><!--main-logo-->
<div class="header-right">
</div><!--header-right-->
</header>
<nav class="main">
<?php wp_nav_menu( array( 'theme_location' => 'main-menu' ) ); ?>
</nav>
<div class="viewport">
<script type="text/javascript"><!--//--><![CDATA[//><!--
jQuery(document).ready(function(jQuery){
jQuery('nav .home a').mouseover(function()
{
jQuery('.viewport').addclass('.viewporthome');
});
});
//--><!]]></script>
</div>
</div>
相关的风格是:
.viewport
{
height: 400px;
width: 400px;
position: relative;
top: -90px;
margin: 0 auto;
}
.viewporthome
{
background-image: url('images/Screen2.png');
background-repeat: no-repeat;
background-position: center;
background-attachment: relative;
}
JS文件是:
var hoverhome = 'url("images/Screen2.png")';
var empty = '';
var success = 'SUCCESS!';
//home
jQuery('nav .home a').hover(function()
{
jQuery('.viewport').css('background-image', hoverhome);
});
jQuery('nav .home a').mouseout(function()
{
jQuery('.viewport').css('background-image', empty);
});
答案 0 :(得分:15)
试试这个:
jQuery('.viewport').addClass('viewporthome');
addClass
需要一个大写字母“C”。
另外,在添加课程时,您不需要输入“。”在字符串或您的班级中将是..viewporthome
。
答案 1 :(得分:5)
使用addClass
代替addclass
答案 2 :(得分:2)
添加课程:
$(".something").click(function(){
$(this).addClass("style");
});
删除课程:
$(".something").click(function(){
$(this).removeClass("style");
});
答案 3 :(得分:1)
删除额外的点并使用addClass()
而不是addclass()
jQuery('.viewport').addClass('viewporthome');
答案 4 :(得分:0)
检查您的大小写。 addClass方法有一个大写'C'。
如果图像仍未显示,则可能是图像相对路径出现问题。如果images文件夹与Javascript文件不在同一目录中,则可能需要修改路径。在不知道你的目录结构的情况下,我无法准确地告诉你需要做什么。