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.
使用 JQuery UI (1.10.3) 我想在我的选择组件的选定项更改时动态添加其他小部件。我的意思是根据用户选择的项目,我需要更改我的 UI 组件。
最佳做法是什么?
谢谢
好吧,虽然我不确定最佳实践,但我发现这个非常有用并且显然很受欢迎:
使用 jquery load() 函数,您可以进行 Ajax 调用,并将结果 html 加载到所选元素中。是的,在服务器端需要一个 servlet,但在我的情况下,它是一个 struts2 操作,根据发送的参数生成响应 html。例如选择元素的选定选项。
所以我没有找到任何干净的方法来避免在构建 html 响应时进行字符串操作。无论如何,这很酷,我可以忍受。
:)