次のコードを使用して、画像クリックでリンクを開こうとしています
<img src="AllScripts/SliderImages/images/1Main.png" alt="" title="" onclick="openSliderImage(id);" onmouseover="this.style.cursor='hand'" width="800px" height="300px" id="http://www.google.com" />
正常に動作していますが、response.write コードを使用して c# write コードを使用して画像を生成すると、動作せず、次のリンクに進みます
http://localhost:1234/AllScripts/SliderImages/images/1Main.png
次のコードは、html を記述するために使用されます。
<% {
Response.Write(SlidingImages);
}
%>
image src
画像クリックではなく選択することは知っていimage id
ますが、なぜですか? これはJavaScript関数です
function openSliderImage(id) {
alert(id);
window.open(id, '_blank');
}