0

我得到了一些在我的页面上隐藏元素的 JQuery 代码。但是,我想在page_load事件出现时继续显示可见元素。

我使用 cshtml(razor) 代码,在那里我有一个IsPost电话,我想知道是否可以调用 JQuery .hide

jQuery 代码:

<script>
    $().ready(function () {
        $(".btn").click(function () {
            $(".Hide").hide("fast");
            $("#" + $(this).data('type')).show("fast");
        });
    });
</script>

C# 代码:

if(IsPost)
{
    if(Request["btn"] == "btn1")
    {
         // Do some code
    }


    if(Request["btn"] == "btn2")
    {
         // Do some other code
    }
}

html代码:

<div id="button1" class="Hide">
    <form action="" method="post">
        <input type="submit" name="btn" value="btn1" />
    </form>
</div>
<div id="button2" class="Hide">
    <form action="" method="post">
        <input type="submit" name="btn" value="btn2" />
    </form>
</div>
4

1 回答 1

0

我最终使用的答案是这样的:

<script>
$().ready(function () {
    $(".btn").click(function () {
        $(".Hide").hide("fast");
        $("#" + $(this).data('type')).show("fast");
    });

    @{
        if(IsPost)
        {
            <text>
                $("#btn1).show("fast");
            </text>
        }
    }
});
</script>
于 2013-03-27T21:20:37.030 回答