将php文件链接到HTML文件?

ang*_*ela 6 html php hyperlink

在这个网站http://www.flatness.eu/test.html我有一个PHP文件的链接.

该文件包含一个用PHP编写的艺术作品.

该页面包含用户单击以逐页删除的图像层,直到页面为空.

有可能最后点击php文件链接用户直接回到他们开始的html主页吗?

Rya*_*yan 6

您链接到的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';
      }
    });
  });
Run Code Online (Sandbox Code Playgroud)