简体   繁体   中英

How to force remove text after footer in html

I have this text, once I include some vuejs extension. I need the extension badly but it seem that it cause some text to display on my footer.

Is there any hack to remove it ?. 在此处输入图像描述

Please check immediately after my footer, there some text there.I don't have editing tool to edit the image.

Please help

You could use some CSS to simply hide it. It might not be ideal, but could work just fine depending on your situation.

.footer{
    display:none;
{

you can use JavaScript to remove that div element.

let footer = document.getElementsByClassName("footer");
footer.remove();

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM