Users can register for various events with powermail forms on a TYPO3 6.2 site. There is no shopping cart.
For a better ux, is it possible prefill typical fields in the register form based on the user's previous input?
For example, allow the user to control this with a checkbox "save my address for use in other forms", storing his address in a session, which can be reused to prefill the next form?
答案 0 :(得分:0)
你可以为此做一件事,我想你可以通过简单地使用javascript来做到这一点。 使用一个变量存储一个地址值,然后在单击/复选收音机/复选框后,您可以在那里制作相同的内容。
var addre1 = $('.residentAddress').val();
答案 1 :(得分:0)