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 获取托管元数据列的值和相应的更改事件?我正在使用 Nintex 表单,要求读取选定的值。
问候,维克兰特
托管元数据列应具有以下内容:“将客户端 ID 存储在 JavaScript 变量中”设置为“是”。JavaScript ID 可以是任何东西,例如 CtrlName
使用上面在 Form Custom JavaScript 中定义的变量添加:
NWF$("#" + CtrlName).bind('change', function(event) { var result = NWF$("#" + CtrlName).val(); });