Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在表格中使用 orchard 1.6。我想将“提交”按钮中的文本更改为“下一步”,因为用户必须在完成之前完成 5 个表单。
我怎样才能做到这一点?谢谢
我发现的唯一方法是在页面加载时使用 jQuery:
//<![CDATA[ $(document).ready(function () { //Change text of button $('.your-button').html('Next'); }); //]]>
如果要将其放在编辑器中,则需要将其包装在 CDATA 标记中,或者如果您在单独的 js 文件中,则只需将其包装在单行中。希望对某人有所帮助。