0

我已导入运行此功能所需的所有.js文件和 UI 文件...当我使用 Google CDN 执行此代码时,它工作正常。但是当我尝试在项目中使用与 .js 文件相同的 CDN 文件运行时,它会引发错误cancel is not a function..

 $( "#dialog-form" ).dialog({
      autoOpen: false,
      height: 250,
      width: 350,
      modal: true,        

      buttons: {
          "Buy Now": function() {         
              $( this ).dialog( "close" );        
              var folionumber=$("#folionum").val();
              //---------------code change--------
              var firsturl = "https://www.sbimf.com/INVESTORCENTER/ASPX/frmNew_Purchase.aspx?id=";
              var id=1;
              var calledfrom = "&calledfrom=asset&fol_no=" + folionumber + "&chk_digit=&opt=B&SchemeCode=" + schemecode + "&url=" + encurl;

              var finalurl=firsturl+id+calledfrom;

              // alert(finalurl);
              window.open(finalurl, "_parent");      
              // window.open("http://172.24.10.203/INVESTORCENTER/ASPX/frmNew_Purchase.aspx?id=1&calledfrom=PortFolio&fol_no=13627577&chk_digit=&opt=B&SchemeCode=D018");    
          },
          Cancel: function() {
              $( this ).dialog( "close" );
          }
      },    

      open: function () {
          $(this).parents(".ui-dialog:first").addClass("dialog_style1");
          $(this).parents(".ui-dialog:first").find(".ui-dialog-titlebar").addClass("titlebar");
          $(this).parents(".ui-dialog:first").find(".ui-dialog-buttonpane").addClass("dialog_style1");
          $(this).parents(".ui-dialog:first").find(".ui-dialog-buttonpane").find(".ui-dialog-buttonset").find(".ui-button").find(".ui-button-text").addClass("btncss");
          $(this).parents(".ui-dialog:first").find(".ui-dialog-titlebar").find(".ui-dialog-titlebar-close").addClass("smallbutton"); 

      }
 });
4

1 回答 1

0

我的问题解决了。我已经链接了旧的 JS 文件。我用新的 JS 替换了它,现在它工作顺利

于 2013-05-08T09:19:25.880 回答