我有一个toast.js文件,其中包含以下代码:

$(document).ready(function() {
  $(".tstInfo").on("click",function(){
       $.toast({
        heading: 'Welcome to my Elite admin',
        text: 'Use the predefined ones, or specify a custom position object.',
        position: 'top-right',
        loaderBg:'#ff6849',
        icon: 'info',
        hideAfter: 3000,
        stack: 6
      });

 });});


在我的aspx页面上,我有按钮

 <asp:Button ID="btnShow" runat="server" Text="Show" Font-Bold="true" CssClass="tstInfo btn-primary" OnClick="btnShow_Click" />


现在,我想在单击按钮时调用js函数。有人可以告诉我该怎么做吗?
提前致谢

最佳答案

 <asp:Button ID="btnShow" runat="server" Text="Show" Font-Bold="true" CssClass="tstInfo btn-primary" OnClick="btnShow_Click" />


在您的代码中将btnShow替换为tstInfo它将起作用并删除OnClick

09-20 20:33