0

我有一个从数据库中获取的名称列表,我希望当用户选择任何一个名称时,它的 id 将保存在一个变量中,然后在提交表单时我在服务器上收到这个 id。我想知道这可能吗?我对这项技术很陌生。

这是我的代码

控制器

  public ActionResult Index()
        {
            MyUsers user = new MyUsers();
            List<MyUsers> result = user.GetAllUser();
            return View(result);
        }

看法

<h2>Products</h2>

@using (Html.BeginForm())
{
<ul>
@foreach (var item in Model)
{
    <li>@item.Name</li>
}
</ul>
    <input type="submit" value="Click Me" />
}
4

1 回答 1

2
// To save the list content/id

var listcontent = '';
$('ul li').on('click', function() {
   listcontent = $(this).text(); // if you want id of list then : listcontent = this.id;
});

// Send the list data to server

$('input[type=submit]').on('click', function() {
   // assumed that you're sending GET reqeust
   $.get('url_to_script?val=' + listcontent, function(res) {
     // res contains data returned from server
   })
});
于 2012-05-17T16:06:10.487 回答