Невозможно загрузить файл PHP во внутренний HTML-файл Div, созданный динамически с помощью JavaScript - PullRequest
0 голосов
/ 14 октября 2011

Я могу загрузить файл .php в div, просто используя <?php include("file.php") ?> Файл может содержать php, javascript, html и обычный текст, и он все еще прекрасно работает.

Я НЕвозможность загрузить файл в Div, который я создал динамически с помощью javascript, если в файле есть теги сценария.

ПРИМЕЧАНИЕ. Я обновляю код по мере выполнения

index.php

Первый Div прекрасно работает и загружает файл test.php без проблем.

<div id="phpDiv"
    style="
    position:absolute; 
    top: 50px; 
    left: 50px;
    height: 200;
    width: 300;
    background-color: #CCCCCC;"> 
        This is the phpDiv  <br>
        <?php include("test.php"); ?>
</div>


Второй Div, созданный динамически, не будет загружать файл, если в нем есть теги сценария

<script>
    var javascriptDiv = document.createElement('div');
    javascriptDiv.setAttribute('id', 'javascriptDiv');
    javascriptDiv.style.position = 'absolute';  
    javascriptDiv.style.top = 350;
    javascriptDiv.style.left = 50;
    javascriptDiv.style.height = 200;
    javascriptDiv.style.width = 300;
    javascriptDiv.style.background = '#CCCCCC'; //so we can see that the DIV was created

    <?php  
            //must have http:// in it to load php stuff
            //will not load files with <script> tags
            $file = file_get_contents('http://127.0.0.1/Debug/test.php');

            //Trim the string and remove new lines.
            $file = trim($file);
            $file = str_replace("\n", "", $file);
            $file = str_replace("\r", "", $file);

            echo "javascriptDiv.innerHTML = \"This is the javascriptDiv <br>\";  ";  
            echo "javascriptDiv.innerHTML += '". $file ."';";
    ?>

    document.body.appendChild(javascriptDiv); //Display the Window
</script>

test.php <- файл, который я пытаюсь загрузить </p>

<?php echo "php works <br>"; ?>
<script> alert('javascript works'); </script>
<a> html works </a><br><br>

and extra spaces and plain text work fine as well 

Ответы [ 2 ]

1 голос
/ 14 октября 2011

Я бы сказал, что это не работает, потому что вы используете одинарные кавычки в своем выражении одинарных кавычек, устанавливая свой innerHTML.

<?php echo "php works <br>"; ?>
<script> alert("javascript works"); </script>
<a> html works </a><br><br>

Edit:

Вы можете попытаться автоматически удалять символы новой строки следующим образом:

// Create a stream
$opts = array(
  'http'=>array(
    'method'=>"GET",
    'header'=>"Accept-language: en\r\n"
  )
);

$context = stream_context_create($opts);

// Open the file using the HTTP headers set above
$file = file_get_contents('test.php', false, $context);
$file = str_replace( "\r\n", "", $file );

поместите файл $ в свой внутренний HTML

0 голосов
/ 30 апреля 2014

Попробуйте увидеть этот код.Я был успешен с этим.Создайте свой код index.php и поместите файл Jquery в этот каталог. Загрузите его отсюда http://jquery.com/download/.

<html lang="en">
<head>
<meta charset="utf-8">
<title>load demo</title>
<style>
body{ font-size: 12px; font-family: Arial; }
</style>
<script src="jquery.js"></script>
</head>
<body>
<b>Successful Response (should be blank):</b>
<div id="success"></div>
<b>Error Response:</b>
<div id="error"></div>
<script>
var browser=navigator.userAgent;
//if (browser.lastIndexOf("Chrome")>=5)
{
alert("ok");
$("#success").load("index.php", function(response, status, xhr) {
if (status == "error") {
var msg = "Sorry but there was an error: ";
$("#error").html(msg + xhr.status + " " + xhr.statusText);
}
});
}
</script>
</body>
</html>
...