Dynamic Forms in Spring

后端 未结 2 1529
天涯浪人
天涯浪人 2020-12-31 21:03

I am trying to make a dynamic form using Spring forms. Basically, the form gets a title of learning activity and then there\'s the a button below it that says, \"Add one mor

2条回答
  •  Happy的楠姐
    2020-12-31 21:27

    Is a JSP tag? If so, then client-side Javascript to add nodes to the DOM will have no effect - since the server-side JSP engine is not interpreting those.

    Your Javascript needs to work with raw HTML and DOM, such as adding an element.

提交回复
热议问题