0
在我的員工主頁上,我有一個部分顯示員工資料圖片。我需要實現功能,因爲它是在Facebook的個人資料圖片,即即使在圖片上傳後,我想顯示瀏覽圖片文件上傳按鈕上方的照片,當懸停在圖片上,我需要有文件瀏覽按鈕。我喜歡這樣在Facebook上瀏覽按鈕像facebook資料圖片頁面
<a onClick="myFunction()">
<img src="@Url.Content(imgpath)" alt="image" id="image" style="width:200px;height:200px" onfocus="myFunction" /></a>
<script type="text/javascript">
function myFunction()
{
alert('test')
<input type="submit" value="Upload Photo" />
}
</script>
但它不適合我。