php – 如何为所有页面设置框架

前端之家收集整理的这篇文章主要介绍了php – 如何为所有页面设置框架前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在创建一个网站框架.
为了更好的 visit,它的页面http://cocvidarbha.epizy.com/voting.

现在我想访问http://cocvidarbha.epizy.com/voting/1.php.但是URL应该只被视为http://cocvidarbha.epizy.com/.

我只在http://cocvidarbha.epizy.com/的index.PHP中使用了帧源

这更像是客户端的答案.

选项1:

您可以做的是告诉浏览器将URL更改为您想要的其他内容(也可能是不存在的路径).请注意,您将无法更改域名.

所以,在你的1.PHP文件添加

<script>
    window.history.pushState("{data: 'pass data'}","PageTitle","/url");
</script>

在head标签内.

选项:2

我建议的另一种方法是使用Ajax.

您可以绑定所有< a href =“/ url”>,这样当您单击它时,它会异步返回该URL上的数据,而无需重新加载页面.

因此,在主index.PHP文件中,添加

<li>
  <a href="http://cocvidarbha.epizy.com/">Page 1</a>
</li>
<li>
  <a href="http://cocvidarbha.epizy.com/voting/1.PHP">Page 2</a>
</li>

<div id="content">
  Content will be loaded here without any page reload or URL change
</div>

然后在< / body>之前添加

// Include jQuery
<script
  src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
  integrity="sha256-k2WSCIexGzOj3Euiig+TlR8gA0EmPjuc79OEeY5L45g="
  crossorigin="anonymous"></script>
<script>

$(document).ready(function(e) {

  // Bind click event to all "<a>" tags
  $(document).on('click','a',function(){
    var url = $(this).attr('href');
    // Do Ajax Call to "href" clicked
    $.ajax({
      url: url,type: "GET",success: function(data){
        $('#content').html(data);
      }
    })
    return false;
  });

});
</script>
原文链接:https://www.f2er.com/php/137688.html

猜你在找的PHP相关文章