Javascript,如果 true 添加字符串
我需要修改这个函数:
function checkPermissions(fid, obj) {
$("#permissions_"+fid+"_canview").attr("checked", obj.checked);
}
如果参数“n”为“true”,那么它将输出#permissionsSet,而不是#permissions。
这可能吗?
I need to modify this function:
function checkPermissions(fid, obj) {
$("#permissions_"+fid+"_canview").attr("checked", obj.checked);
}
if the param "n" is "true" then instead of #permissions it'll output #permissionsSet.
is that possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
OP 澄清了无论是否提供第三个参数都要更改此问题的问题。干得好。
注意:该函数可以通过传递 2 或 3 个参数(或者实际上是任何数字)来自由使用。
OP clarified the question to be change this whether or not a 3rd parameter was provided. Here you go.
Note: This function can be freely used with passing 2 or 3 parameters (or really any number).