Calling multiple JavaScript functions on a button click

前端 未结 11 1637
灰色年华
灰色年华 2020-12-23 22:37

How to call multiple functions on button click event?

Here is my button,



        
11条回答
  •  一向
    一向 (楼主)
    2020-12-23 23:30

    btnSAVE.Attributes.Add("OnClick", "var b = DropDownValidate('" + drp_compcode.ClientID + "') ;if (b) b=DropDownValidate('" + drp_divcode.ClientID + "');return b");
    

提交回复
热议问题