HTML,CSS,JavaScript模式和许多页面

问题描述 投票:1回答:2

我有一个HTML页面,上面有一个模式弹出窗口。该页面包含Javascript和CSS,并且运行良好。但是,我有24页需要相同的模态函数。有没有办法从html页面到模式页面的简单语法链接或引用模式页面或代码?因此,我可以有一个单独的仅模式页面,可以与这24个页面中的每个页面链接。只是为了使事情简单。一种方法链接到CSS页面。

谢谢!

javascript html css modal-dialog
2个回答
0
投票

[html中没有办法在file1,file2,file3等中包含来自filea的文本。如果工作量不是太多,则在编辑器中进行复制和粘贴或搜索和替换可能是最快的修复方法。

以下是更复杂的解决方案:Include another HTML file in a HTML file


0
投票
If you are working on apace server like Xampp. You can create a file called modal.html

Now you can reference the same file in all HTML pages with below code 



<!-- Modalstarts --> 
                <!--#include virtual="modal.html"--> 
            <!-- Modal ends -->

Setting in XAMPP for this to work
Open httpd.conf file at this path C:\xampp\apache\conf in some editor

Search for AddType text/html .shtml
 and replce it by 

AddType text/html .html
    AddOutputFilter INCLUDES .html
and restart xampp
© www.soinside.com 2019 - 2024. All rights reserved.