我有一个基本功能,当没有点击答案时,它会在 div id“错误”中显示一条错误消息。这很好用,但是当我有背景颜色和图像时,会在 div 上显示样式。我正在使用 jquery 和 moo 工具,
在确定答案之前,有没有办法隐藏这种风格。
<style type="text/css>
#error {
border: 1px solid;
margin: 10px 0px;
padding:15px 10px 15px 50px;
background-repeat: no-repeat;
background-position: 10px center;
color: #D8000C;
background-color: #FFBABA;
background-image: url('../images/error.png');
}
</style>
<div id="error"></div>
<script type="text/javascript>
function showAnswerAlert() {
$('error').set('html', '<strong>Please select an answer above.<strong>')
}
function clearErrorBox() {
$('error').set('html','');
}
</script>