PartialViewをアップロードするビューがdivにあります。正規表現のフラグが正しくありませんエラーパーシャルビュー
ここはコード
<div id="right2" style=" border-style: solid; border-color: #1d69b4; border-radius: 10px;"> @Html.Partial("CalendarDefault") </div>
されており、ボタンによって、私はここに別の
に1 PartialViewを変更する必要があるボタンのコードのロード用
<button class="filled-button" onclick="myFunction()" style="background: #72c367">New Appointment</button>
とJSコードです
<script>
function myFunction() {
$("#right2").load(@Url.Action("SheduleNewAppointment","Calendar"));
}
</script>
しかし、私はエラーが私はそれを修正するにはどうすればよい
myFunction is not defined at HTMLButtonElement.onclick (Index:125) Uncaught SyntaxError: Invalid regular expression flags
の下にありますか?
<script>
$('#getDetails')
.click(function() {
$('#detailsPlace').load('@Url.Action("GetDetails", "Home")');
});
</script>
<table class="table">
@foreach (var item in Model)
{
<tr>
<td>
<a href="#" id="getDetails">@Html.DisplayFor(modelItem => item.Description)</a>
</td>
</tr>
}
</table>
<div id="detailsPlace"></div>
/ホーム/ GetDetails使用して、正規表現として解釈されている「ホーム:
あなたがのcontrolerで "SheduleNewAppointment" を定義したする必要があります –