日期:2014-05-18 浏览次数:20409 次
protected void Page_Load(object sender, EventArgs e) { Button1.Attributes.Add("onclick", "return confirm('xxxx')"); }
------解决方案--------------------
.......你们的回答真是。。。。
------解决方案--------------------
window.onload = function(){
document.getElementById("button1").onclick = function(){
//your code here
};
};