简体   繁体   中英

Is it possible to make Iframe alternate?

My problem: I can display content of a php file including(image background) using iframe. When I go to include my php file using

    include("modules/form.php");
    or
    file_get_contents("modules/form.php");

it displays content, but background image becomes invisible. It is a big site. So, is there any alternate of iframe for this purpose? I do not want to use iframe because my ranking in google is becoming down.

You can't archive this using php , till far i know. PHP is a server side script it does not know anything from the client side. You can use jquery , first you will have to create a div and in it set the content of the page.Use the code below

<head>
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js?ver=1.4'></script>

<script type='text/javascript'>
$(document).ready(function (){
$('#divId').load(full url to modules/form.php);     // Paste the full url here
});
</script>
</head>
<body>
<div id="divId"></div>
</body>
</html>

Hope this helps you

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM