语法检查.click函数。有人能发现什么是错的吗?

时间:2012-02-06 19:42:29

标签: jquery click

这是一个简单的点击功能。虽然它在使用一段段落文本时工作得很好,但当我将它链接到用css设置样式的div时,它不起作用。我以前做过这个,它的工作没有任何障碍。我弄坏了东西而无法发现它。请进行理智检查?

      <!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>
        <link rel="stylesheet" href="http://dev.bizzocall.com/css/cpanel.css"  type="text/css"/>
        <script type="text/javascript" src="http://code.jquery.com/jquery-latest.js" language="javascript"></script>
        <script type="text/javascript">
            $(document).ready(function() {

                  $("#test1").click(function(){
                    window.location="http://www.google.com";
                  });

                  $("#gobackbutton").click(function(){
                    window.location="http://www.google.com";
                  });

                  $("#copycodebutton").click(function(){
                       window.location="http://www.google.com";
                  });

        </script>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <title>Untitled Document</title>
        </head>

        <body>
                <div id="test1">
                   <p>TEST</p>
                </div>
                <div class="clearer"></div>
                <div id ="copycodebutton"></div>
                <div class="clearer"></div>
                <div id ="gobackbutton"></div>
        </body>
        </html>

1 个答案:

答案 0 :(得分:3)

$(document).ready(function() {未关闭。

$(document).ready(function() {
}); // <-- missing