2010-01-21 72 views
-1
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %> 

<!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 runat="server"> 
    <title>Untitled Page</title> 

    <script language="javascript" type="text/javascript"> 
    $(document).ready(function() 
    { 
    $(".button1").click(function() 
    { 
     $("p").hide("slow"); 
    }); 
    $(".button2").click(function() 
    { 
     $("p").show("slow"); 
    }); 
    }); 
    </script> 
    </head> 
<body> 
    <form id="form1" runat="server"> 


    <input id="Button1" type="button" value="button" class="button1"/> 
    <input id="Button2" type="button" value="button" class="button2"/><h2>Welcome to F5 Technologies </h2> 
    <p>&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp F5 Technologies is a rapidly developing company, acquiring its position on the business market, 
    Our company helps make products 
    delivery more effective, efficient, and meaningful to our customers, and allow them to take greater 
    responsibility for their own new products.Software is developed by the most experienced development staffs. </p> 


    </form> 
</body> 
</html> 
+0

究竟是不是工作?我在这里没有看到问题。 – Eilon 2010-01-21 05:51:25

回答

1

你需要包括jQuery库。

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script> 
+0

我忘了它。谢谢你。 – 2010-01-21 05:54:21

0

尽管我对这个问题的评论,它看起来像的罪魁祸首是,你实际上并没有引用jQuery的JS文件。尝试是这样的:

<script type="text/javascript" src="Scripts/jquery-1.3.2.js"></script> 
1

您不包括jQuery库本身:

<script src="jquery.min.js" type="text/javascript"> 
</script> 

您还可以从一个CDN

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.0/jquery.min.js" 
    type="text/javascript"></script> 
+0

您还应该添加type =“”属性。 – Eilon 2010-01-21 05:54:24

+0

@Eilon,是的,谢谢我只是添加它:) – CMS 2010-01-21 06:00:30