2011-02-01 73 views

回答

0

你可以嘗試這樣的:

<input type="image" src="yourImage.gif" 
    onclick="window.location.href = 'anotherPage.aspx';"> 
1

四個選項

非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> 
相關問題