我有这段代码:
CSS:
Expr
BODY:
def readline(lines):
if lines in strings:
return True
else:
return False
with open('output.txt', 'w+') as output_file:
with open('input.txt', 'r') as input_file:
for lines in input_file:
if readline(lines) == True:
output_file.write('True\n')
print('true')
else:
output_file.write('False\n')
print('false')
https://jsfiddle.net/z9v4py3c/
我在想是否有任何方式:当我点击"元素",div与" c"班级消失了。我尝试了很多选项,但我不是CSS专家。在此代码"输入元素"无法出现或JavaScript。我将非常感谢您的帮助。
答案 0 :(得分:1)
只需将id="link#"
复制并移至{{1}}:https://jsfiddle.net/z9v4py3c/1/
答案 1 :(得分:0)
我能找到的唯一方法是伪造它。
CSS:仅定位.tab内的父div,并将背景设为白色。
.tab > div {
display: none;
background:white;
}
HTML:在跨度中包裹c
<span><div class="c" style="display:block"></div></span>
现在,当链接处于活动状态时,它只会隐藏白色下的黄色。
查看我的Fiddle