我是 MVC 的新手,所以我真的不知道这是什么方法:我希望在一个标签悬停时,其他标签会根据鼠标悬停 javascript 返回的集合生成,如下所示:
<script....
function getSongs(genreId)
{ return collection of Song objects }
</script>
<div>
@foreach(Genre genre in Genres)
{
<div> <label onmouseover= "here send @genre.Id to the function that will handle this and that will return a collection of Song objects"> @genre.Text </label> </div>
}
</div>
<div>
@foreach(Song song in the collection returned by the js function)
{ <div> <label> @song.Title </label> </div> }
</div>
我在这里写了这个例子,没有从vs粘贴,如果有一些语法错误,请见谅。什么是正确的方法,如果这是正确的方法,那么应该如何完成?谢谢