gpt4 book ai didi

jquery - jQuery 验证插件的 showErrors() 函数

转载 作者:行者123 更新时间:2023-12-03 22:37:25 27 4
gpt4 key购买 nike

以下脚本运行良好:

$("#regform").validate().showErrors({"username":"message"});

我将脚本更改为以下脚本后,它不起作用。

var name = "username";
$("#regform").validate().showErrors({name:"message"});

我需要通过变量传递字段名称。有谁知道这个问题如何解决吗?

最佳答案

您应该构建一个对象文字并使用 bracket notation成员访问运算符:

var name = "username",
obj = {};
obj[name] = "message";

$("#regform").validate().showErrors(obj);

关于jquery - jQuery 验证插件的 showErrors() 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1397565/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com