获取div中的内容到PHP变量

时间:2015-01-25 20:48:05

标签: javascript php html submit contenteditable

我正在使用带有contenteditable="true"的div作为输入字段,现在我正在寻找一种方法将div的内容传递给PHP变量,以便能够将其保存在.txt文件。我一直在寻找解决方案,到目前为止我发现的唯一建议是(据我所知)在提交之前将内容添加到隐藏的输入字段 - 虽然我不知道如何做到这一点,看起来似乎有更好的方法来解决这个问题?

值得一提的是,我不是那种经验丰富的后端工作人员,所以对解决方案的任何解释都会非常感激 - 即使只是在这个时候指向正确的指针也会很好。

我目前正在使用常规表单来测试带有变量$name的保存功能以用于短信目的,但我的目标是将文本保存在$textcontent中的div中。 (我最好使用href来提交而不是按钮,但我怀疑使用什么方法来解决我的问题会有很大的不同。)

的index.php

<?php
//temporary, will be dynamic
$sessionid = "123testID";
?>

<!DOCTYPE html>
<html>
<head></head>

<body>

<div id="results">
    <div name="textcontent" contenteditable="true" class="no-formatting">Content that should be saved to .txt file&#133;</div>

    <!-- for testing only -->
    <form action="index.php" method="post">
        <input type="text" placeholder="Name" name="name">
        <input type="submit" name="submit">
    </form>

    <br>
    <a href="index.php">reload</a>
    <!----->

</div>

</body>
</html>



<?php

$name = $_POST["name"];
$sessionid = "123testID";

?>

<?php
if (strlen($name) > 0) {

    $fp = fopen('stories/'.$sessionid.'.txt', 'a+');

    fwrite($fp, "textcontent:\t".$name."\r\n");

    fclose($fp);
}

?>

1 个答案:

答案 0 :(得分:4)

现在我可以想到两种方式:正如你所说,将文本从可信的div写入输入;和ajax。

1.隐藏输入方式

因此,这里的工作流程是您使用javascript将contenteditable div中的html复制到隐藏的输入。当您单击提交按钮时,$_POST["my-hidden-input"]将存储文本。

JS:

var contentText = document.getElementByClassName('no-formatting');
var hiddenInput = document.getElementById('hidden-input');

// copy the text to input when the user writes in contentText div
contentText.onkeyup = function() {
    hiddenInput.innerHTML = this.innerHTML;  // 'this' is pointing to contentText
}

将HTML添加到表单中:

<input type="hidden" id="hidden-input" name="my-hidden-input">
<!-- note: your hidden input :) -->

添加PHP:

$textcontent = $_POST["my-hidden-input"];

注意:IMO这很愚蠢,因为您只需使用基本的非隐藏type="text"输入即可完成此操作。

2.AJAX方式

所以如果你不熟悉ajax,这里的工作流程有点复杂。如果是这样,谷歌它(我不是给你链接因为我从Javascript学到它:权威指南,第6版 - 一本非常好的书)

我们使用contenteditable div(对于name和textcontent)和一个提交按钮(实际上是div,但这并不重要)创建我们的html。如果用户单击div,它将通过XMLHttpRequest(ajax)将这些div中写入的文本发送到.php文件。变量存储在$ _POST中。

HTML&amp; JS:

<!doctype html>
<html>
<head></head>
<body>

<div id="status"></div>

<div contenteditable="true" id="name"></div>
<div contenteditable="true" id="text"></div>
<div id="submit-button">Submit me</div>
<script>
function requestAjax(){
    // Create our XMLHttpRequest object
    var request = new XMLHttpRequest();

    // the php file handling your file saving and other logic
    var url = "my-php-file.php";

    // variables later used in your php file
    var name = document.getElementById("name").innerHTML;
    var text = document.getElementById("text").innerHTML;

    // needed in my-php-file.php. this is important becouse based on these parameters it will be stored in $_POST
    var $POST = "name="+fn+"&text="+ln;

    request.open("POST", url, true);

    // Set content type header information for sending url encoded variables in the request
    request.setRequestHeader("Content-type", "application/x-www-form-urlencoded");

    // Access the onreadystatechange event for the XMLHttpRequest object
    request.onreadystatechange = function() {
        if(request.readyState == 4 && request.status == 200) {
            var someCallback = request.responseText;
            document.getElementById("status").innerHTML = someCallback;
        }
    }

    // Send the data to PHP now... and wait for response to update the status div
    request.send($POST); // Actually execute the request

    // in case you want to inform the user if it succeeded or failed
    document.getElementById("status").innerHTML = "still not finished";
}

var submitButton = document.getElementById('submit-button');
// attach event handler
submitButton.onclick = requestAjax;
</script>

</body>
</html>

PHP:

<?php
    //retrieved through AJAX
    $name = $_POST['name'];
    $textcontent = $_POST['text'];
    // insert your code here ...

    echo 'Ajax request completed!'; //this will inform the request we've made that the proccesing is done
?>

基本上就是这样。现在在php文件中,你已经在变量中存储了从html文件中检索到的数据:D