我正在尝试使用 jquery 通过视图调用函数。最初我使用的是 razor 的 @html.BeignForm 但对于网络,它需要转换为 jquery
我不知道我是否走在正确的道路上,但这就是我目前正在使用的剃须刀。
@foreach(var up in Model)
{
@up._id
using (@Html.BeginForm("DQPost", "Disqus", new { ID = up._id }, FormMethod.Post))
{
<h7>The thread ID</h7>
<input type="text" name="ThreadID" /><br />
<h7>The message </h7>
<input type="text" name="Message" /><br />
<input type="submit" value="Post Comment"/>
}
}
我想要做的是更改提交到按钮,然后触发 jquery。这是我目前写的jquery。
<script type="text/javascript">
$(document).ready(function () {
$('#post').click(function () {
var dataToSend = { ID: ID, MethodName: 'DQPost', Message: message };
var options =
{
data: dataToSend,
dataType: 'JSON',
type: 'POST',
}
});
});
</script>
任何帮助将不胜感激。