确认框上的是或否按钮

时间:2017-03-12 00:35:33

标签: jquery asp.net messagebox confirmation

下面的代码在Asp.Net上运行一个带有Javascript的确认框 我需要更改按钮文本。如何在此消息框中使用“是”或“否”按钮? 感谢。

INSERT INTO tabelname(id, col2, col3, col4)
VALUES
    (1, 1, 1, 'text for col4'),
    (DEFAULT,1,4,'another text for col4')
ON CONFLICT (id) DO UPDATE SET
    col2 = EXCLUDED.col2,
    col3 = EXCLUDED.col3,
    col4 = EXCLUDED.col4

1 个答案:

答案 0 :(得分:1)

您无法使用confirm执行此操作。无法自定义原生alert / confirm / etc对话框的按钮。

您可以改为创建基于DOM的对话框,并根据自己的喜好自定义元素。