gpt4 book ai didi

laravel - 在 Laravel Blade View 中使用 iframe

转载 作者:行者123 更新时间:2023-12-02 14:21:50 27 4
gpt4 key购买 nike

我有一个网站,其中一个页面具有用于将数据输入 mysql 数据库的 Web 表单。现在需求发生了变化,我需要将整个网站转换为 Laravel。

在当前网页中有一个index.php,它有一个菜单条和一个iframe。单击菜单项时,链接页面将在 Iframe 中打开。现在如何使用 Laravel 实现相同的灵 active 。

如何在 iframe 中重定向/路由 Web 表单。

下面是index.php

<html>
<head>
<script type="text/javascript" src="JS/header.js"></script>
<link href="css/stylesheets.css" rel="stylesheet" type="text/css" />
</head>

<body>
<div class="menustrip">
<ul>
<li><a href="index.php" onclick="OpenForm('register.php');">Register</a></li>
<li><a href="index.php" onclick="OpenForm('search.php');">Search</a></li>
</ul>
</div>
<div class="iframe" style="position:fixed;top:62px; left:0; width:100%; height:100%;" >
<iframe name="main" id="main" src="" frameborder="0" width="99%" height="95%" align="left"><FONT FACE=ARIAL SIZE=3 COLOR="RED">Your Browser doesn't Support Required Component.</FONT></iframe>
</div>

</body>
</html>

最佳答案

您可以像这样在 Laravel Blade 中使用 iframe。

这适用于本地 .html 文件(公共(public)目录中的文件)

<iframe src="{{URL::to('/')}}/your file path here" width="100%" height="600"></iframe>

这是在线网址

<iframe src="http://www.onlineicttutor.com/wp-content/uploads/2016/04/pdf-at-iframe.pdf" width="100%" height="300"></iframe>

关于laravel - 在 Laravel Blade View 中使用 iframe,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41355348/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com