禁用 IC 中的命令按钮(交换站)
我想在点击次数达到 100 时禁用我的命令按钮,使用 IC 从 mysql 检索点击次数。
我正在做类似的事情,但它不起作用。
my $cc= [sql-param hits];
[if $cc>= 100 ]
<input type="Submit" name="cv" value="Vote" disabled="true"><br /><br />
[/if]
谢谢 伊莎
I want to disable my command button when the no of hits reach 100 ,retrieving no of hits from mysql using IC.
I am doing something like this but its not working.
my $cc= [sql-param hits];
[if $cc>= 100 ]
<input type="Submit" name="cv" value="Vote" disabled="true"><br /><br />
[/if]
Thanks
Isha
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果可以的话,您可能会想坚持使用 ITL。您不需要为此使用 Perl 代码。
我已经有一段时间没有搞乱 IC 了,但是与此类似的东西(当然在
[query]
标签内)可能会起作用......我没有看到输出任何一个的意义不过,禁用按钮或什么都没有。如果条件为真,您可能只想输出“disabled”属性。
You'll probably want to stick with ITL, if you can. You shouldn't need Perl code for this.
I haven't messed with IC in a while, but something similar to this (within the
[query]
tag, of course) might work...I'm not seeing the point of outputting either a disabled button or nothing, though. You might just want to output the "disabled" attribute if the condition's true.