很抱歉之前没有说清楚。嗯,如果选择了下拉菜单中的特定选项,我想要的是在特定文本上显示一个星号。喜欢说它是这样的必填字段。我真的是网络开发的新手,所以我真的需要一些帮助。
我需要将其更改为在单击按钮时显示内联和可见性。
这是我的html标签:
font color=red id="dobRec" style="display:none;visibility:hidden;">* /font>
我的 JQuery 代码是这样的:
<script>
$("#custType").change(function(){
if ($(this).val == 'R') {
//display the asterisk
}elseif ($(this).val == 'B') {
//do something here
}
});
</script>