0

我有一个gridview,其中一列是“添加”/“删除”asp:按钮,我想在使用jquery或javascript单击时切换文本。我无法找到一个很好的例子。

这是我对模板字段的标记:

<asp:TemplateField HeaderText="ADD <br /> REMOVE" HeaderStyle-ForeColor="White" > 
    <ItemTemplate >
       <asp:Button id="btnBuy" runat="server" Width="50px" Height="15px" BorderStyle="Solid" Text="ADD" Font-Size="7pt"                                  BackColor="#FFFF80" />
    </ItemTemplate>
    <HeaderStyle Width="7%" />
    <ItemStyle CssClass="sessionItems" VerticalAlign="Middle"  HorizontalAlign="Center" />
</asp:TemplateField>

这是一些 jquery,但它不起作用,因为我希望这更多的是单个按钮:

           $('#btnBuy').click(function()
          {  
            if ($(this).text() == "ADD")
            {
                $(this).text("REMOVE");
            } else {
                $(this).text("ADD");
            }
        })

请告知如何正确切换gridview按钮文本?

谢谢你,吉姆

这是我的复选框,它不会回发:

<asp:TemplateField HeaderText="Select <br /> Files" HeaderStyle-ForeColor="White" > 
                        <ItemTemplate >
                            <asp:CheckBox ID="chkSelectVideo" runat="server" OnClick="checkboxClicked(this)" ToolTip="Select file for download" 
                                Enabled='<%# Eval("SORD_EnableSelectionCheckBox") %>' Checked='<%# Eval("SORD_SelectedForDownloadFlag") %>' />
                        </ItemTemplate>
                        <HeaderStyle Width="6%" />
                        <ItemStyle VerticalAlign="Middle" HorizontalAlign="Center" />
                    </asp:TemplateField>
4

1 回答 1

0

您可以尝试的一件事是在按钮的 OnClientClick 事件中,调用如下所示的函数

OnClientClick="SomeJSFunction(this)"

In this way you get access to your button control in the JS Function, so now you can modify the text of the button in the function as shown below:

function SomeJSFunction(source) {
    if (source.value === 'Add') {
        source.value = 'Remove';
    } else if (source.value === 'Remove') {
        source.value = 'Add';
    }
}
于 2012-05-03T06:46:59.550 回答