0
如何製作具有圖像類型的輸入按鈕,鏈接到其他頁面。 Asp.net的JavaScript ...等等...ASP.NET輸入類型圖像...如何使其鏈接到頁面?
<input type="image" src="blah blah" onclick="">
我如何讓它的onclick鏈接?
如何製作具有圖像類型的輸入按鈕,鏈接到其他頁面。 Asp.net的JavaScript ...等等...ASP.NET輸入類型圖像...如何使其鏈接到頁面?
<input type="image" src="blah blah" onclick="">
我如何讓它的onclick鏈接?
你可以嘗試這樣的:
<input type="image" src="yourImage.gif"
onclick="window.location.href = 'anotherPage.aspx';">
四個選項
非JavaScript的方式。
<form method="get" action="mypage.aspx">
<input type="image" src="blah blah">
</form>
內聯的JavaScript方式
<input type="image" src="yourImage.gif" onclick="window.location.href = 'mypage.aspx';">
jQuery的方式
<input type="image" src="yourImage.gif" data-target="mypage.aspx">
<script>
$('input[type=image]').click(function(e) { e.preventDefault(); window.location.href = $(this).data('target'); })
</script>
非按鈕方式
<a href="mypage.aspx" style="border:none"><img src="myimage"></a>
你試過`ImageButton`嗎? – Bazzz 2011-02-01 08:15:47