ASP.NET C# 请问大家,后台生成的HtmlInputButton,怎么引用通过点击改变它的样式?

2024-11-30 17:15:06
推荐回答(3个)
回答1:

给button添加类名btn.Attributes.Add("class", "btclass");
前台用jquery遍历改变样式,$('.btclass').each(function() { 编写你的代码} )
若都是添加到div2元素下,上面的可以免写,直接用
$('#div2').find(‘:button’).each(function() { 编写你的代码} ) ;
如给button添加onclick事件:
$('#div2').find(‘:button’).each(function() {
$(this).click(function() {编写你的代码})
} ) ;

回答2:

btn.Attributes.Add("onclick", "this.style.background='#aaaaaa';");

回答3:

btn.Attributes.Add("onclick", "this.className += ' 你的class名字'");