我想使用Cycle2 slideshow插件與ASP .NET。 圖像正在從服務器動態加載。Jquery Cycle2幻燈片 - 從服務器,加載圖像.NET .NET
幻燈片放映無法正常工作,圖像在頁面中一個接一個地加載/顯示,但當我檢查chrome inspect元素中的html頁面時,html看起來很好。
我只是不知道如何將圖像從服務器端(動態)加載到幻燈片。
這是我的HTML代碼
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script src="http://malsup.github.com/jquery.cycle2.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#imageUrls").load("LoadImages.aspx", function() {
$('.cycle-slideshow').cycle();
});
})
</script>
</head>
<body>
<div id="imageUrls" class="cycle-slideshow"></div>
</body>
</html>
這是服務器響應
<img src="http://example.com/images/1.jpg">
<img src="http://example.com/images/1.jpg">
這是它的外觀在Chrome檢查元素,當我運行這個工作正常代碼在瀏覽器中。
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script src="http://malsup.github.com/jquery.cycle2.js"></script>
</head>
<body>
<div class="cycle-slideshow">
<img src="http://example.com/images/1.jpg">
<img src="http://example.com/images/2.jpg">
</div>
</body>
</html>
如何創建幻燈片使用ASP .NET動態圖像加載?