我已导入运行此功能所需的所有.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");
}
});