首先,ASP.NET MVC 对我来说是非常新的(+- 一个月)。
在我看来,我有这个代码
第一个区块
<label for="from">Data Inicio</label>
<input id="from" name="from" type="text" />
<label for="to">Data Fim</label>
<input id="to" name="to" type="text" />
第二块
<div class="btn-group">
<button type="button" class="btn btn-primary" onclick="listaC006()">Pesquisa Normal</button>
<button type="button" class="btn btn-primary" onclick="flistaC006()">Pesquisa com filtro</button>
</div>
并且
function list() {
$.ajax(
{
type: 'POST',
url: '/Inscricao/_Lista',
dataType: 'html',
cache: false,
async: true,
success: function (data) {
$('#lista').html(data);
}
});
}
为了<div id="lista"></div>
动态填充这个“”。
是否可以在 onclick 事件中传递“from”和“to”的值(日期选择器)以便使用这些值来执行查询?