我正在使用JQuery Steps和我的MVC 5.现在似乎一切正常。
最后一个按钮默认为“完成”。我想知道如何重命名“完成”按钮来说出“创建”或“提交”之类的内容?
我打开了jquery.steps.js文件并找到了这段代码。我更换了完成:“完成”完成:“创建”,但这不会改变任何东西。
labels: {
/**
* Label for the cancel button.
*
**/
cancel: "Cancel",
current: "current step:",
/**
**/
pagination: "Pagination",
/**
* Label for the finish button.
*
* @property finish
* @type String
* @default "Finish"
* @for defaults
**/
finish: "Finish",
/**
* Label for the next button.
*
* @property next
* @type String
* @default "Next"
* @for defaults
**/
next: "Next",
/**
* Label for the previous button.
*
* @property previous
* @type String
* @default "Previous"
* @for defaults
**/
previous: "Previous",
/**
* Label for the loading animation.
*
* @property loading
* @type String
* @default "Loading ..."
* @for defaults
**/
loading: "Loading ..."
}
答案 0 :(得分:1)
刚刚遇到这个并发现正确的方法是
labels: {finish: "SUBMIT"},
实施例
$(".wizard").steps({
labels: {finish: "Make Payment"},
headerTag: "h3",
bodyTag: "fieldset"
});
答案 1 :(得分:0)
知道了。要将Finish按钮重命名为SUBMIT,我打开并编辑了jquery.steps.min.js文件。喜欢这个
finish:"SUBMIT"