1

我得到编译错误$(this).id)

<script>
            if ('@content.ToList().Count' > 0) 
            {
                $(".divContainer").text('@content.Where(p => p.ContainerID == `$(this).id`).Select(p => p.TextContents).First()');
            }
            else 
            {
                $(".divContainer").text("Please enter the text");

            }
</script>

如何在剃须刀代码中添加带有类“divcontainer”的“this div”的id@content.Where(p => p.ContainerID == "ID".Select(p => p.TextContents).First()

问题变得更简单。

如何正确编写以下代码

@string text = $(this).text();

这里剃刀变量“文本”被分配了 Jquery 文本值。

4

1 回答 1

0

使用 jquery 的 .attr() 方法获取 id

 if ('@content.ToList().Count' > 0) 
    {
        $(".divContainer").text('@content.Where(p => p.ContainerID == $(this).attr("id")).Select(p => p.TextContents).First()');
    }
    else 
    {
        $(".divContainer").text("Please enter the text");

    }
于 2013-04-19T07:06:15.163 回答