我试图找出如何编写此功能,但我不确定它的名称以及我可以在哪里找到一个例子。我是初学者,所以我只熟悉HTML和CSS。
它不是一个下拉栏。它是您可以单击的文本,当您单击它时,它会立即显示其下方的另一个文本正文。它不涉及加载任何东西,就像它已经存在一样。这是立即的。我希望在我的网站上有一些东西,如果我有一个名字的东西,它上面有一个箭头,上面写着"详细信息"当您单击它时,它会显示包含详细信息的整个文本。此按钮通常似乎旁边有一个小箭头。同样,它不是任何类型的菜单或栏,它显示整个文本或图像。
答案 0 :(得分:0)
听起来你想展示一个隐藏的元素。这是一个非常基本的例子,请查看jQuery private publishNumbersChange() {
// To get the latest value from the stream, we have to subscribe
const subscription: Subscription = this.numbers.subscribe((numbers: number[]) => {
// We got the last value in stream in numbers argument. Now make changes to the array
changeArray();
// And push it back as a new value to the stream
this.numbers.next(numbers);
});
// Also we have to unsubscribe
subscription.unsubscribe();
}
& show()
。您实际上是将隐藏文本的hide()
CSS规则设置为`display:block'。
display:none
$('#foo').on('click', function(){
$('#text').show();
});
#text {
display:none
}