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.
我在 myjsonclass.show 中使用 SHtml.jsonForm 通过以下命令将 jsonform 包装到 HTML 页面:
<div id="form" class="lift:myjsonclass.show">
它工作正常。
SHtml.jsonForm 方法为表单标签定义了一个随机 id,我想知道是否有解决方案可以获取该 id 并在 HTML 中使用它。例如,在 Javascript 中应用表单验证器会更容易。
我已经通过访问表单的已知元素并在 javascript 中询问其父元素来解决这个问题: element.parent(); 所以我可以通过 element.attr('id') 获取表单的 id。