我想调用JavaScript函数来折叠/展开。
我在跨度
的asp:repeaterItemTemplate
中使用此代码
onclick="javascript:funCollExp(this,'<%= P1.ClientID %>');"
如何通过Control.ClientID
?
它将P1.ClientID替换为页面上的字符串。
答案 0 :(得分:3)
你只需要这样做
"onclick="javascript:funCollExp(this,'" + P1.ClinetID + "');"
完整代码可以使用像这样的itemdatabound事件
<强>标记强>
<asp:Repeater id="myRepeater"
OnItemDataBound="myRepeater_ItemDataBound" runat="server">
<ItemTemplate>
<asp:button id="myDiv" runat="server">......</asp:button>
</ItemTemplate>
</asp:Repeater>
<强>代码隐藏强>
protected void myRepeater_ItemDataBound(object sender, RepeaterItemEventArgs e)
{
if(e.Item.ItemType == ListItemType.Item
|| e.Item.ItemType == ListItemType.AlternatingItem)
{
Button mybtn = e.Item.FindControl("mybtn") as bUTTON;
mybtn.Attributes.Add("ONCLICK", "MYFUNCTION(this,'" + P1.ClientID + "');");
}
}
答案 1 :(得分:1)
您需要做的就是这样使用
"onclick="javascript:funCollExp(this,'" + P1.ClinetID + "');"