禁用 IC 中的命令按钮(交换站)

发布于 2024-12-21 21:24:26 字数 261 浏览 1 评论 0原文

我想在点击次数达到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

娇纵 2024-12-28 21:24:26

如果可以的话,您可能会想坚持使用 ITL。您不需要为此使用 Perl 代码。

我已经有一段时间没有搞乱 IC 了,但是与此类似的东西(当然在 [query] 标签内)可能会起作用......

[if-sql-param hits >= 100]
 <input type="submit" name="cv" value="Vote" disabled="disabled"><br><br>
[/if-sql-param]

我没有看到输出任何一个的意义不过,禁用按钮或什么都没有。如果条件为真,您可能只想输出“disabled”属性。

<input type="submit" name="cv" value="Vote" 
 [if-sql-param hits >= 100] disabled="disabled"[/if-sql-param]>
<br>
<br>

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...

[if-sql-param hits >= 100]
 <input type="submit" name="cv" value="Vote" disabled="disabled"><br><br>
[/if-sql-param]

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.

<input type="submit" name="cv" value="Vote" 
 [if-sql-param hits >= 100] disabled="disabled"[/if-sql-param]>
<br>
<br>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文