我正在開發ASP.NET MVC代碼如下。按鈕上的錯誤單擊Document.Ready()MVC
<script type="text/javascript">
$(document).ready(function() {
$("#btnBookServiceCouponSection").click();
});</script>
這是我的按鈕代碼。
<input type="button" id="btnBookServiceCouponSection" style="min-width: 150px;"
value="Book a Service" onclick="NoCouponServiceAppointment()" />
點擊此按鈕後,它會調用NoCouponServiceAppointment否優惠券代碼如下。
this.NoCouponServiceAppointment = function() {
RedirectToURL("/Appointment/SelectServices");
}
this.RedirectToURL = function (url) {
document.location = url;
}
當此按鈕單擊時,它將重定向到控制器操作方法,但在重定向之前會給出錯誤。這個問題只發生在chrome中。
當我點擊按鈕,然後上面的錯誤發生時,我點擊確定的錯誤頁,然後它工作正常。請指導我爲什麼發生這個錯誤警告框我怎麼解決這個問題謝謝。
使用重定向在這樣的JavaScript代碼。 '$(「#btnBookServiceCouponSection」)。click(function(){document.href =「yourURL」;});' – Nilesh