我正在使用Ladda Bootstrap。我要实现的目标是显而易见的,而且很直接。

当我单击按钮时,我想更改按钮的文本。我怎样才能做到这一点?

Example

最佳答案

我找到了解决方案,这也很简单。
您无法在当前版本中执行此操作,但也许它们会在即将发布的版本中启用。

这是代码。

btnSelector = $(".my-ladda-btn");
var yourButton = Ladda.create(btnSelector);
yourButton.start();
btnTextSelector = btnSelector.find('.ladda-label');
currnetText = btnTextSelector.text()
btnTextSelector.text('Loading..');


当您要stop按钮时。

btnTextSelector.text(currentText);
yourButton.stop();


很简单吧?

关于jquery - 加载时更改Ladda Bootstrap按钮的标签文本,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22060101/

10-10 05:33