jQuery点击功能在div

时间:2015-11-14 11:56:13

标签: jquery html

所以在这里,我使用图像作为可以使用jQuery点击的按钮。 看看我的代码

$(document).ready(function(){
///////////////////////////////////////////////////////
$("#hidebutton").hide();
$("#menubutton").hide();
///////////////////////////////////////////////////////
$(".menubutt").click(function(){
    $("#mainbutton").fadeOut(500);
    $("#menubutton").delay(550).fadeIn(1500);
    $("#hidebutton").delay(500).fadeIn(1000);
///////////////////////////////////////////////////////
$(".expandbutt").click(function(){
    $("#mainbutton").delay(500).fadeIn();
    $("#hidebutton").fadeOut();
    $("#menubutton").fadeOut();
///////////////////////////////////////////////////////
$(".next").click(function(){
        $(".previous").fadeOut();//for testing purpose
});
});
});
});

使用html

<div class="nextcont">
<img src="images/previous.png" class="previous">
<img src="images/next.png" class="next">
</div>

在某种程度上,我无法点击(下一张)图片

---- ---- EDIT

我已经更改了jquery语法,没有运气我仍然无法点击(下一张)图片。 我会发布我的代码 HTML:http://pastebin.com/2vJbmZv7`` JQ:http://pastebin.com/U24fD41s

3 个答案:

答案 0 :(得分:0)

using System;

public class Test
{
    public static void Main()
    {
        Console.Write("Enter width of rectangle: ");
        int w = int.Parse(Console.ReadLine()); 
        Console.Write("Enter height of rectangle: ");
        int h = int.Parse(Console.ReadLine()); 
        Console.WriteLine();
        if(w > 5 && w <= 80 && h > 5 && h <= 20)
        {

            draw(w, h);
        }
        else
        {
            Console.WriteLine("Invalid entry!");
        }
    }
    static void draw(int w, int h)
    {
        for (int i = 0; i < h; i++)
        {
            for (int j = 0; j < w; j++)
            {
                if ((i == 0) || (j == 0) || (i == h - 1) || (j == w - 1)   || (i == j)  || (i + j == w - 1) )
                {
                    Console.Write("*");
                }
                else
                {
                    Console.Write(" ");
               }

            } Console.WriteLine();
        }
    }
}

尝试这个,如果你的页面有jquery库

,它将完美地工作

答案 1 :(得分:0)

有一些语法错误。这里修改了代码

if %a%==X/O and if %b%==X/O goto done

答案 2 :(得分:0)

  

错误的右括号。

$(document).ready(function(){
///////////////////////////////////////////////////////
$("#hidebutton").hide();
$("#menubutton").hide();
});
///////////////////////////////////////////////////////
$(".menubutt").click(function(){
$("#mainbutton").fadeOut(500);
$("#menubutton").delay(550).fadeIn(1500);
$("#hidebutton").delay(500).fadeIn(1000);
});
///////////////////////////////////////////////////////
$(".expandbutt").click(function(){
$("#mainbutton").delay(500).fadeIn();
$("#hidebutton").fadeOut();
$("#menubutton").fadeOut();
});
///////////////////////////////////////////////////////
$(".next").click(function(){
    $(".previous").fadeOut();//for testing purpose
});