jquery-steps プラグインを含めました。ボタンのテキストを変更するにはどうすればよいですか?
今は「終了」と書いてありますが、それを「開始」に変えたいです。
ありがとう
jquery-steps プラグインを含めました。ボタンのテキストを変更するにはどうすればよいですか?
今は「終了」と書いてありますが、それを「開始」に変えたいです。
ありがとう
次のリンクをご覧ください。初期化時にすべてのラベルを変更できます。
var settings = {
labels: {
current: "current step:",
pagination: "Pagination",
finish: "Finish",
next: "Next",
previous: "Previous",
loading: "Loading ..."
}
};
$("#wizard").steps(settings);`
あなたはこれを行うことができます:
form.steps({
headerTag: "h4",
bodyTag: "section",
transitionEffect: "fade",
labels:
{
finish: "Go",
},
onStepChanging: function (event, currentIndex, newIndex)
{
//change color of the Go button
$('.actions > ul > li:last-child a').css('background-color', '#f89406');
form.validate().settings.ignore = ":disabled";
return form.valid();
},
onFinishing: function (event, currentIndex)
{
form.validate().settings.ignore = ":disabled";
return form.valid();
},
onFinished: function (event, currentIndex)
{
form.submit();
}
});