gpt4 book ai didi

php - 将 php 文件链接到 HTML 文件?

转载 作者:太空狗 更新时间:2023-10-29 15:41:44 25 4
gpt4 key购买 nike

在此站点上 http://www.flatness.eu/test.html我有一个 php 文件的链接。

该文件包含一个用 php 编写的艺术作品。

该页面包含图像层,用户单击这些图像可逐层删除,直到页面为空。

是否可以让用户最后一次点击 php 文件链接直接返回到他们开始的 html 主页?

最佳答案

您链接到的 php 文件使用 jQuery 将名为 houdini 的类添加到隐藏的图像中。您可以更改点击处理程序以计算类不是 houdini 的剩余图像数量,然后重定向用户。

$(function() {                       //run when the DOM is ready
$(".image").click(function() { //use a class, since your ID gets mangled
$(this).addClass("houdini"); //add the class to the clicked element

if( $('.image:not(.houdini)').length == 1 )
{
// this is the last image, redirect user
window.location = 'http://yourpageurl.com';
}
});
});

关于php - 将 php 文件链接到 HTML 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17065403/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com