0

所以我试图简单地根据网页上按下的图像重新定位页面。我之前有代码,但是对于我必须做的 100 件事来修复东西,它不再工作了。谁能弄清楚为什么?

因此,当您现在单击cloudybubble.png页面上的图像时,它会将您带到cloudy_name.php. 还会有其他图像将您带到其他页面来执行此操作。

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>WhethertheWeather</title>

<!--<link rel="stylesheet" type="text/css" href="demo/css/screen.css" media="all" />-->
        <script src="http://www.adrianpelletier.com/mint/?js" type="text/javascript"></script>
        <script type="text/javascript" src="demo/scripts/jquery-1.3.2.min.js"></script>
        <script type="text/javascript" src="demo/scripts/jquery-ui-1.7.1.custom.min.js"></script>
        <script type="text/javascript" src="demo/scripts/execute.js"></script>


<script>
    function showWeather(_Weather) {
     //alert(Weather);
        myform._Weather.value=Weather;
    //  alert(Weather);

    // ._Weather
        myform.submit();



        }

    $(document).ready(function() {
        $('cloudybubble.png').click(function() {
            window.location="http://http://www.tcnjart.com/christineaustin/whethertheweather/cloudy_name.php;"
        });
    });

    // window.location="http://http://www.tcnjart.com/christineaustin/whethertheweather/cloudy_name.php"; //
</script>


</script>


<link href="style.css" rel="stylesheet" type="text/css">
</head>

<body background="images/gradientsky.jpg"> 



<div id="weather">

<ul id="nav-reflection">
<form method="post" action="cloudy_name.php" id="myform">
        <li class="button-color-1"><a href="javascript:showWeather('cloudy')"; title="My fancy link"><img src="images/cloudybubble.png" width="211" height="180" align="left"></a></li>

    <input type="hidden" name="weather" value="whatever">
</form>
</ul>
</div>

</body>
</html>

新脚本

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>WhethertheWeather</title>

<!--<link rel="stylesheet" type="text/css" href="demo/css/screen.css" media="all" />-->
        <script src="http://www.adrianpelletier.com/mint/?js" type="text/javascript"></script>
        <script type="text/javascript" src="demo/scripts/jquery-1.3.2.min.js"></script>
        <script type="text/javascript" src="demo/scripts/jquery-ui-1.7.1.custom.min.js"></script>
        <script type="text/javascript" src="demo/scripts/execute.js"></script>


<script>
    function showWeather(_Weather) {
     //alert(Weather);
        myform._Weather.value=Weather;
    //  alert(Weather);

    // ._Weather
        myform.submit();



        }

    $('#cloudybubble').click(function() {
    window.location = "http://http://www.tcnjart.com/christineaustin/whethertheweather/cloudy_name.php;"
});

</script>


</script>


<link href="style.css" rel="stylesheet" type="text/css">
</head>

<body background="images/gradientsky.jpg"> 



<div id="weather">

<ul id="nav-reflection">
<form method="post" action="cloudy_name.php" id="myform">
        <li class="button-color-1"><a href="javascript:showWeather('cloudy')"; title="My fancy link"><img id="cloudybubble" src="images/cloudybubble.png" width="211" height="180" align="left" />
</a></li>

    <input type="hidden" name="weather" value="whatever">
</form>
</ul>
</div>

</body>
</html>
4

3 回答 3

1

编辑:修改以考虑评论中的新信息。

我们可以对您页面上的所有图像进行通用处理,以便它们使用相同的 JavaScript。

在 HTML 中,将超链接放回 a 标记中。然后,在 a 标签中添加一个类,我建议使用“weatherLink”。然后将要登录的文本(即“cloudy”)放入数据库中,并将其设置为链接的ID。

HTML:

<li class="button-color-1">
    <a id="cloudy" class="weatherLink" href="http://www.tcnjart.com/christineaustin/whethertheweather/cloudy_name.php" title="My fancy link">
        <img src="images/cloudybubble.png" width="211" height="180" align="left" />
    </a>
</li>

现在我们的 JavaScript 需要更新如下的 jQuery 点击处理程序。

JavaScript:

$(document).ready(function () {
    $('a.weatherLink').click(function (e) {
        e.preventDefault();
        showWeather(this.id);
        window.location.href = this.href;
        return false;
    });
});

现在,如果您添加任何其他图像,只需将超链接留在 a 标记中,给它weatherLink 类,并给它一个可以传递给 showWeather() 的唯一 id。给定正确的 HTML,您无需再复制任何 JavaScript。

这是一个 jsFiddle 测试页面,供您查看结果:http: //jsfiddle.net/willslab/jkB9z/9/

于 2012-04-22T19:07:34.417 回答
0

id在您的img标签中添加一个并在您的选择器中使用它。

于 2012-04-22T19:08:04.767 回答
0

你绝对应该在服务器端这样做。

如果您的用户没有 javascript 怎么办?相信我,其中有很多(主要是出于安全原因)。

将表单的操作定义到某个 PHP 页面,处理您需要做的更改或 w/e,并相应地重定向用户(使用header('Location: http://www.hi.com');)。

于 2012-04-22T21:06:42.123 回答