我得到圖像列表並將其顯示在剃鬚刀頁面上。每個圖像都是「超鏈接」。現在我有一個問題。我不想通過使用'jquery.BlockUI'將圖像顯示爲模式視圖。但我不知道如何發送圖像的id來打開點擊的圖像。有什麼建議?如何獲取顯示爲超鏈接的圖像的ID
@foreach (var m in Model)
{
string imagePath = path tp the image;
<div style="background: #f5f5f5; border: 1px solid #cccccc; margin-bottom: 3px; margin-right: 3px;
padding: 3px; width: 300px; height: 100px; float: left; overflow: hidden;">
<div style="width: 105px; float: left;">
<a onclick="showImageModal()"> <img [email protected]/> </a>
</div>
...
當我點擊圖像時添加此代碼時,它只是作爲新頁面打開。我嘗試調試,它永遠不會在這個jQuery代碼?
我忘了發送更新。我使用'.live ...','$('#divid')。live('click',function(e)...')來完成它,它可能是必需的,因爲我閱讀並創建了圖像dinamicly。 – 1110
你是對的:) –