关于php页面输出时js设置input框的选中值的代码如下所示:
/* 设置表单的值 */ function setValue(name, value) { var first = name.substr(0, 1), input, i = 0, val; if (value === "") return; if ("#" === first || "." === first) { input = $(name); } else { input = $("[name='" + name + "']"); } if (input.eq(0).is(":radio")) { //单选按钮 input.filter("[value='" + value + "']").each(function() { this.checked = true }); } else if (input.eq(0).is(":checkbox")) { //复选框 if (!$.isArray(value)) { val = new Array(); val[0] = value; } else { val = value; } for (i = 0, len = val.length; i < len; i++) { input.filter("[value='" + val[i] + "']").each(function() { this.checked = true }); } } else { //其他表单选项直接设置值 input.val(value); } }
以上所述是小编给大家介绍的PHP页面输出时js设置input框的选中值,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索js
, input
选中值
input radio 默认选中、input checkbox 选中、input radio 选中事件、input radio 选中、input 选中时无边框,以便于您获取更多的相关知识。
时间: 2024-09-20 06:57:16