gpt4 book ai didi

javascript - 在同一 View 中使用 javascript 调用在 View 中创建的函数

转载 作者:行者123 更新时间:2023-11-29 20:05:25 25 4
gpt4 key购买 nike

我创建了一个包含 Javascript 和函数的 View ,如下所示:

@functions
{
public int DaysInMonth(string Month)
{
//code to get the no of days in month;
}
}

我有包含月份的下拉列表..现在我想使用 jQuery 在下拉列表的更改事件上编写代码,它将调用上述函数。

<script type="text/javascript">
$(function () {
$('#Months').live('change', function () {
//code to call the above function
});
});
</script>

这里 ('#Months') 是下拉列表的 id..

注意:以上两个代码片段都在同一个 View (索引)中。

如何链接以上两个代码片段?

谢谢你..

最佳答案

@functions
{
public int DaysInMonth(string Month)
{
//code to get the no of days in month;
}
}

这样试试

<script type="text/javascript">
@DaysInMonth(month);
</script>

它在我的程序中运行良好。

关于javascript - 在同一 View 中使用 javascript 调用在 View 中创建的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12136280/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com