gpt4 book ai didi

jquery - Alertify JS-更改提示对话框上的按钮文本

转载 作者:行者123 更新时间:2023-11-30 23:55:01 25 4
gpt4 key购买 nike

$("#btn_submit").click(function(){
alertify.prompt("Please enter note/remarks for this Form:", function (e, value) {
$("#alertify-ok").val('Submit Form'); //change button text
if (e) {
alertify.success("Form has been submitted");
} else {
alertify.error("Your form is not submitted");
}
});

alertify 提示对话框的 HTML

<button id="alertify-ok" class="alertify-button alertify-button-ok" type="submit">
OK
</button>

当用户点击提交按钮时出现提示。尝试使用下面的方法更改按钮文本,但它不起作用

$("#alertify-ok").val('Submit Form'); //change button text

Fiddle - 我需要将默认的确定按钮文本更改为其他内容

如何将按钮文本更改为提交表单而不是默认的确定

最佳答案

<button>innerText属性(property)并没有 value 。使用.text()

$("#alertify-ok").text('Submit Form'); //change button text

使用 .set('labels') 更改默认文本的选项。

alertify.prompt('Please enter your comments', 'some value', 
function(evt, value){ alertify.message('You entered: ' + value);}
).set('labels', {ok:'Submit', cancel:'Cancel'});

<强> Fiddle

关于jquery - Alertify JS-更改提示对话框上的按钮文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31115559/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com