0
我有一個視圖和它的控制器。視圖具有以下按鈕(其被重複多次針對不同的變體):MVC View正在刷新按鈕onclick
<button type="button" id="@variant.id" onclick="return Select()" style="padding:10px 15px;width:100%;height:100%;margin-top:-10px;">
<div class="col-md-4">
<img width="100" height="100" style="padding:5px" src="/test/@variant.logo" title="@variant.name" />
</div>
<div class="col-md-8">
<h4>@variant.name</h4>
</div>
</button>
這是它訪問功能:
<script type="text/javascript">
function Select()
{
alert("test");
return false;
}
</script>
對於函數調用後由於某些原因,在視圖是總是被刷新。你知道我的代碼可能有什麼問題嗎?
你的代碼應該工作,這是您的完整的代碼? – Satpal
按鈕或子元素是否具有其他可能正在刷新的其他事件處理程序? –
看起來好像你正在做任何事情使它在該代碼片段中刷新。 –