所以我使用了一个名为 Coin Slider 的 jQuery 插件。幻灯片似乎工作正常,但我想将它与我在 Visual Studio 2010 的 App_Date 文件夹中创建的数据库连接起来。
当单击某张图片时,我希望系统使用幻灯片中该特定图像的描述作为关键字来搜索数据库中的表。如果该项目存在于数据库中,它将转到 href 中提到的网站。否则,它将显示“未找到项目”。
我所做的只是制作幻灯片。
<!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 runat="server">
<title></title>
<script src="js/jquery-1.9.1.js" type="text/javascript"></script>
<script src="css/coin-slider/coin-slider.min.js" type="text/javascript"></script>
<link href="css/coin-slider/coin-slider-styles.css" rel="stylesheet" type="text/css" />
<script type="text/javascript">
$(document).ready(function () {
$('#coin-slider').coinslider();
});
</script>
</head>
<body>
<div id='coin-slider'>
<a href="the first website goes here" target="_blank">
<img src='1.jpg' >
<span>
Description goes here
</span>
</a>
<a href="the second website goes here">
<img src='2.jpg' >
<span>
Description goes here
</span>
</a>
</div>
</body>
</html>
任何帮助,将不胜感激。