我正在经营一个小型网站。我有一个ajax shoutbox。

我的网站上有3种不同的用户类别,而在shoutbox上,它们具有不同的颜色,因此人们知道谁是谁。

我也创建了支持者类,但不是用户类,我可以通过选中单选按钮yes或no来选择用户是支持者。

我想如果选中了收音机,则在用户名后面会出现一个小图像。

使用php,我只是为了进行测试而使它像这样:

if(isset($GLOBALS['user']['supporter'])) {
 $support = 'the image here';
}


我的问题是:是否可以在jquery中做到这一点?

对于:

if($('global here') == 'supporter') {
  $('class here').after('the image');
}


可以给我一个提示吗?

最佳答案

首先,您需要获取已检查收音机的价值。

supporter = $('#radioButton:checked').val();


然后,假设您的yes复选框的值为'1',只需执行编写的代码即可...

if($(supporter == '1')) {
  $('.myClass').after('your markup');
}


这是你想要的?

关于javascript - jQuery .after()添加图像,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6882411/

10-09 19:01