我想从我的视图中将参数传递给jQuery document.ready()
函数:
$(document).ready(function (parameter){
$('select[name=Product]').val(parameter);
});
如何从我的View中触发事件并传递参数?我使用Razor作为View引擎.
谢谢
你不能. document.ready
函数不接受参数.例如,您可以将此参数定义为视图中的
全局变量:
<script type="text/javascript">
var model = @Html.Raw(Json.Encode(Model));
</script>
然后在你单独的javascript文件中使用这个全局变量:
$(function() {
$('select[name=Product]').val(model.SomeProperty);
});
原文链接:https://www.f2er.com/jquery/181294.html