我正在使用PrettyPhoto 3.1.4來自http://www.no-margin-for-errors.com如何讓PrettyPhoto與MVC3內容處理程序一起使用?
我正在使用ASP.NET MVC3中的內容處理程序從數據庫中加載圖像。漂亮照片不會使用API加載圖像。我如何使它與內容處理程序一起工作?
這裏是應該彈出的圖像庫中進行圖像:
<a href='' onclick="$.prettyPhoto.open(api_images0,api_titles0,api_descriptions0);" title='UFC123'>
<img style="max-height: 160px;max-width: 260px;" id='Img31' alt='UFC123' title='UFC123' src='/img.ashx?mediaId=31' style='padding:10px' />
</a>
下面是我使用的腳本:
<script type="text/javascript" charset="utf-8">
var api_images0 = ['/img.ashx?mediaId=33'];
var api_titles0 = ['Gina'];
var api_descriptions0 = ['Gina Description'];
</script>
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
$("a[rel^='prettyPhoto']").prettyPhoto({ theme: 'dark_rounded', social_tools: '' });
});
</script>
任何javascript錯誤? – Jrod 2012-04-26 15:23:07