Alertify JS-在提示对话框中更改按钮文本
Alertify JS- Change button text on prompt dialog
$("#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");
}
});
HTML 用于警报提示对话框
<button id="alertify-ok" class="alertify-button alertify-button-ok" type="submit">
OK
</button>
当用户点击提交按钮时出现提示。尝试使用下面的方法更改按钮文本,但它不起作用
$("#alertify-ok").val('Submit Form'); //change button text
Fiddle- 我需要将默认的 OK
按钮文本更改为其他内容
如何将按钮文本更改为 Submit Form
而不是默认的 OK
?
<button>
有 innerText
属性 而没有 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'});
找到这个:alertify
alertify.prompt('Please enter your comments', 'some value',
function(evt, value){ alertify.message('You entered: ' + value);}
).set('labels', {ok:'Submit Form', cancel:'New Cancel'});
$("#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");
}
});
HTML 用于警报提示对话框
<button id="alertify-ok" class="alertify-button alertify-button-ok" type="submit">
OK
</button>
当用户点击提交按钮时出现提示。尝试使用下面的方法更改按钮文本,但它不起作用
$("#alertify-ok").val('Submit Form'); //change button text
Fiddle- 我需要将默认的 OK
按钮文本更改为其他内容
如何将按钮文本更改为 Submit Form
而不是默认的 OK
?
<button>
有 innerText
属性 而没有 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'});
找到这个:alertify
alertify.prompt('Please enter your comments', 'some value',
function(evt, value){ alertify.message('You entered: ' + value);}
).set('labels', {ok:'Submit Form', cancel:'New Cancel'});