我正在尝试自定义默认的删除确认弹出窗口。我正在使用this plugin 自定义popup.In插件,他们演示了使用按钮onclick.But在我的应用程序中我使用javascript函数内的确认对话框,
来自插件的实际样本
$('#button_2').confirmOn({
questionText: 'This action cannot be undone, are you sure?',
textYes: 'Yes, I\'m sure',
textNo: 'No, I\'m not sure'
},'click', function(e, confirmed) {
if(confirmed) $(this).remove();
});
我在下面尝试自定义确认对话框,
function deleteFollow(url, obj){
confirmOn({
questionText: 'This action cannot be undone, are you sure?',
textYes: 'Yes, I\'m sure',
textNo: 'No, I\'m not sure'
}, 'click', function(e, confirmed){
if(confirmed)
''''''''''''
ajax post comes here
''''''''''''''''
以上将控制台中的错误称为“Uncaught ReferenceError: confirmOn is not defined
”。如何实现或更改我的实际功能的原始文件。
答案 0 :(得分:1)
你的第二个confirmOn()
没有jQuery前缀:
function deleteFollow(url, obj){
confirmOn({
//your code
应该是:
function deleteFollow(url, obj){
$.confirmOn({
//your code
或:
function deleteFollow(url, obj){
$("#foo").confirmOn({
//your code
答案 1 :(得分:0)
试试你的代码
function deleteFollow(url, obj){
confirmOn({
questionText: 'This action cannot be undone, are you sure?',
textYes: 'Yes, I\'m sure',
textNo: 'No, I\'m not sure'
},
更改为
function deleteFollow(url, obj){
$.confirmOn({
questionText: 'This action cannot be undone, are you sure?',
textYes: 'Yes, I\'m sure',
textNo: 'No, I\'m not sure'
},