将动态标题插入多个页面?

时间:2014-05-07 18:03:24

标签: javascript jquery html

目前我正在使用 jquery.ba-hashchange.min.js和dynamicpage.js 从索引页面动态加载内容,从而保留标题在一个文件中。但是,jquery.ba-hashchange.min.js干扰了我内容中的其他jQuery。

有没有办法将标题插入页面而不是使用标题将内容插入索引页面?

请注意我使用的是HTML5 / CSS和jQuery(不是php)

2 个答案:

答案 0 :(得分:0)

你可以使用append添加JQuery代码,但我不推荐它,因为如果用户关闭了他的javascript,你就不会有标题。

答案 1 :(得分:0)

尝试这样的事情:

<head>
    <title></title>
    <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; minimum-scale=1.0; user-scalable=no; target-densityDpi=device-dpi"/>
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
    <script src="http://www.dragan-gaic.info/js/jquery-1.8.2.min.js"></script>      
    <script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>    
    <script>

        $(document).on('pagebeforeshow', '[data-role="page"]', function(){       
            $.mobile.activePage.find('[data-role="header"]').load("header.html", function(){ 
                $(this).parent().trigger('pagecreate');
            }); 
            $.mobile.activePage.find('[data-role="footer"]').load("footer.html", function(){ 
                $(this).parent().trigger('pagecreate');
            });  
        }); 
    </script>
</head>