0

我想通过 javascript 进行更改,style attribute尝试为.linkbuttonjavascriptDropDownListlinkbutton

这是我的代码

            </asp:ListItem>
            <asp:ListItem Text="vikas" Value="0">

            </asp:ListItem>
        </asp:DropDownList>
        <asp:LinkButton ID="lnkbtnSave" Style="display: none" Text="Save" runat="server"></asp:LinkButton>
        <asp:LinkButton ID="lnkbtnCancel" Style="display: none" Text="Cancel" runat="server"></asp:LinkButton>
        <asp:TextBox ID="lnkbtnTest" Style="display: none" Text="hope" runat="server"></asp:TextBox>
        <asp:LinkButton ID="lnkbtnChangeHR" Text="Change Hiring Manager:" runat="server"
            OnClientClick="javascript:return Visible(this.id);"></asp:LinkButton>
    </div>
    <script type="text/javascript" language="javascript">
        alert('dil sambhal ja jara');

        function Visible(me) {
            alert(document.getElementById(me.replace("lnkbtnChnageHR", "lnkbtnTest")));
            document.getElementById(me.replace("lnkbtnChangeHR", "ddlHiringManager")).style.display = 'inline';
            document.getElementById(me.replace("lnkbtnChnageHR", "lnkbtnSave")).style.display = 'inline';
            document.getElementById(me.replace("lnkbtnChnageHR", "lnkbtnCancel")).style.display = 'inline';
            document.getElementById(me.replace("lnkbtnChnageHR", "lnkbtnChnageHR")).style.display = 'none';
            document.getElementById(me.replace("lnkbtnChnageHR", "lnkbtnSave")).style.color = "#f6f6f6";
            document.getElementById(me.replace("lnkbtnChnageHR", "lnkbtnCancel")).style.color = "#f6f6f6";
            document.getElementById(me.replace("lnkbtnChnageHR", "lnkbtnTest")).style.display = 'inline';
            alert(document.getElementById(me.replace("lnkbtnChnageHR", "lnkbtnCancel")).style.display == 'none');
            return false;
        }
    </script>
4

1 回答 1

0

对不起,伙计们,这是野餐

这是 lnkbtnChangeHR 不是 lnkbtnChnageHR

于 2013-04-05T05:48:07.640 回答