html Iframe表单嵌入,不提交数据,而是重新加载[已关闭]

qaxu7uf2  于 2022-12-09  发布在  其他
关注(0)|答案(1)|浏览(121)

**已关闭。**此问题需要debugging details。当前不接受答案。

编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
3天前关闭。
Improve this question
在我们的内部企业门户网站上,我们有一个与Iframe集成的表单。直到上周五,它还在正常工作,发送数据也很好。
现在,当我们提交表单时,表单将重新加载(而不是完整的网页),而不是提交数据。
代码非常简单(尽管很难看:D)。

>! ```
>! <head> 
>! <meta charset="utf-8">
>! <Title>Portal</title>
>! <link rel="icon" type="image/png" href="data\logosite.jpg" />
>! <link rel="stylesheet" media="screen" type="text/css" title="Design" href="design.css"/> 
>! <font size="6"/>
>! </head>
>! <body> 
>! <center><h5>Intern reporting form<br><a href=index.html>Click here to get back to the main portal</H5></a><iframe id="inlineFrameExample"
>! title="Displayed form"
>! width="1900"
>! height="950"
>! src="Here is the link of the embed form">
>! </iframe></center>
>! </body>
>! 
>! 
>! 
>! --- The function below just block the right click on website. ---
>! 
>! <script type="text/javascript">
>! 
>! 
>! document.body.oncontextmenu = function()
>! 
>! alert('This action is disabled, click on "OK" to continuer.');
>! return false;
>! 
>! 
>! 
>! 
>! </script>
>! ```
>!

你有什么建议吗?
提前谢谢你,祝你有美好的一天!Guillaume
老实说,我已经尝试了这么多的事情,我不能告诉你我所做的一切...

c7rzv4ha

c7rzv4ha1#

如果它是一个iframe,你不能控制发生了什么,如果有一个重定向,这一切都取决于发生在iframe代码,你不是在控制这一切,你只是把它放在你的网站.我会检查从iframe的原始源代码,并测试它的方式,如果它只是发生在iframe,那么有一个问题,但如果它发生在非iframe端,则原始代码存在问题

相关问题