作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在编写一个灯箱/厚箱画廊风格的程序,我需要发送用户单击的内容以在灯箱中加载正确的内容。
这是我的文件:
show-hide-lightbox.js - Ajax Request Loading the content o lightbox.jsp (which I don't remember how to pass variables to)
function showLightbox(){
var ajaxObject = null;
if(window.XMLHttpRequest){
ajaxObject = new XMLHttpRequest();
}else if(window.ActiveXObject){
ajaxObject = new ActiveXObject("Microsoft.XMLHTTP");
}
if(ajaxObject != null){
ajaxObject.open("GET","lightbox.jsp",true);
ajaxObject.send();
}else{
alert("You do not have a compatible browser.")
}
ajaxObject.onreadystatechange = function(){
if (ajaxObject.readyState == 4 && ajaxObject.status == 200){
document.getElementById("ajaxResult").innerHTML = ajaxObject.responseText;
}
};
}
function hideLightbox(){
document.getElementById("commentFormBG").style.display = "none";
document.getElementById("commentFormFG").style.display = "none";
}
lightbox.jsp(要加载到 html 上的 div 中的内容)
<div id="commentFormFG">
<div class="commentFormTitle">Title of Lightbox</div>
</div>
test.html - 只是一个包含 div id=ajaxResult 供 ajax 加载的页面
<html>
<head>
<title>Page Title</title>
<link rel="stylesheet" href="style.css" type="text/css"/>
</head>
<body>
<div id=ajaxResult></div>
<img onclick="showLightbox()" src="http://www.swanderphotography.com/wp-content/uploads/2013/07/2013Jul06-9917.jpg">
<script type="text/javascript" src="show-hide-lightbox.js"></script>
</body>
</html>
和一个最小的样式表
#commentFormBG{
width: 100%;
height: 100%;
background-color: #000;
opacity: .8;
position: absolute;
top: 0;
left: 0;
cursor: pointer;
}
#commentFormFG{
width: 80%;
height: 80%;
background-color: #fcfcfc;
position: absolute;
top: 10%;
left: 10%;
}
我想发送点击图像的地址,但我的 php 已经变得非常生锈,我不知道最简单的方法是什么。理想情况下,您单击缩略图并加载图像的大版本。
最佳答案
LightBox Gallery 您可以实际使用 FancyBox 插件 http://fancyapps.com/fancybox/
关于php - 如何使用 AJAX 在灯箱中加载内容,该内容取决于用户点击的触发器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17768186/
我正在开发一个需要能够平均三个数字的 Facebook 应用程序。但是,它总是返回 0 作为答案。这是我的代码: $y = 100; $n = 250; $m = 300; $number = ($y
我只是无法弄清楚这一点,也找不到任何对我来说有意义的类似问题。我的问题:我从数据库中提取记录,并在我的网页上以每个面板 12 条的倍数显示它们。因此,我需要知道有多少个面板可以使用 JavaScrip
我是一名优秀的程序员,十分优秀!