【发布时间】:2019-08-01 18:27:46
【问题描述】:
我有一段代码可以在 wordpress 页面中创建“阅读更多”标签。它在一页上运行良好,但如果我尝试将其复制到另一页上,它在第二页上不起作用。
<input type="checkbox" id="mycheckbox" />
<label for="mycheckbox" class="showmore">Toggle more</label>
<div class="moretext" >Some more text</div>
#mycheckbox:checked ~ .moretext {
display: block;
}
.moretext{
display: none;
}
#mycheckbox{
display: none;
}
.showmore{
cursor: pointer;
}
我想也许我需要为每个按钮命名,所以我做了下面的操作,但按钮没有做任何事情。
<input type="checkbox" id="mycheckbox1" />
<label for="mycheckbox1" class="showmore">Toggle more</label>
<div class="moretext" >Some more text</div>
#mycheckbox1:checked ~ .moretext {
display: block;
}
.moretext{
display: none;
}
#mycheckbox1{
display: none;
}
.showmore{
cursor: pointer;
}
谁能告诉我我做错了什么。谢谢
******************更新**********************
This is the entire HTML portion of the code
<H3> Send Chrysanthemums all over Cape Town and Surrounds</H3>
<div class = "textcontainer">
The history of chrysanthemums dates back to China in the 15th century. Chrysanthemum flowers offered such perfection with the beautiful alignment of petals that it quickly became the blossom of nobility in ancient China. It was held in such high esteem that only nobles were permitted to grow it. In this time, the chrysanthemum meaning came to include vitality and longevity. "I don't have a particular preference for chrysanthemum, yet there are indeed no better looking flowers after it blooms," wrote the Tang Dynasty (618-907) poet Yuan Zhen in his poem "Chrysanthemum."
<input type="checkbox" id="mycheckbox">
<br>
<label for="mycheckbox" class="showmore">Toggle more</label>
<div class="moretext">
After making its way over to Japan by Buddhist monks in 400 AD, the Japanese were so enamoured by this beautiful flower that it was soon adopted as the emperor’s crest and official seal. “Kiku” is the Japanese name for chrysanthemum and every year there is a National Chrysanthemum Day which is also referred to as the Festival of Happiness. Though it is originally a golden yellow colour, today there are thousands of different types and colours in the world that naturally have their meaning.
<br>
<br>
Our bouquets of chrysanthemums are hand wrapped and presented in our signature kraft paper and cellophane, accompanied with a beautiful card containing your personal message. These flower bouquets are sure to bring a smile to someone’s face. Select from five different bouquet size options for door to door delivery all over Cape Town and surrounding areas.
</div>
</div>
随之而来的 css 是 -
.moretext{
display: none;
}
#mycheckbox:checked ~ .moretext {
display: block;
}
#mycheckbox{
display: none;
}
.showmore{
cursor: pointer;
}
【问题讨论】:
-
这段代码没有问题。它工作正常。因此,如果没有更多上下文或代码,就无法进行故障排除。
-
也许可以尝试使用类来调用该按钮而不是 id,因为它们是唯一的。有没有发生 JS 错误?
-
它似乎适用于 wordpress 页面 - flowersforeveryone.co.za/send-tulips 但不适用于类别页面 - flowersforeveryone.co.za/product-category/chrysanthemums...我不知道为什么?