可能重复:
Pass a PHP string to a Javascript variable (and escape newlines)
所以,基本上我试图从PHP页面传递一个字符串作为javascript函数的参数。 PHP包含在脚本所在的页面中,但它们位于两个单独的文件中。
但是,每当我尝试传递字符串时,它都会停止运行javascript。我可以传递PHP整数,但不能传递字符串。有可能解决这个问题吗?我一直在寻找可能导致我的错误的互联网,但我找不到任何东西。任何帮助将不胜感激。
$comment = "7b";
echo"
<table>
<p><input type='text' id='newPostComment' value='' placeholder='WRITE YOUR COMMENT HERE...' size='35'/><input type='submit' value='UPLOAD' onclick='uploadPostComment($parentID, $comment);fetchComment()'/></p>
</table>
function uploadPostComment(PostCID, Comment){
var PostCommentData = "fsPostID="+PostCID;
PostCommentData += "&fsPostComment="+Comment;
var xmlHttp = new XMLHttpRequest();
xmlHttp.open("post", "uploadPostComment.php", true);
xmlHttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xmlHttp.setRequestHeader("Content-length", PostCommentData.length);
xmlHttp.setRequestHeader("Connection", "close");
xmlHttp.onreadystatechange = function()
{
if(xmlHttp.readyState == 4)
{
if(xmlHttp.status == 200)
{
alert("Message Posted");
}
else
{
alert("Oh no, an error occured2");
}
}
};
xmlHttp.send(PostCommentData);}
答案 0 :(得分:2)
echo"
<table>
<p><input type='text' id='newPostComment' value='' placeholder='WRITE YOUR COMMENT HERE...' size='35'/><input type='submit' value='UPLOAD' onclick='uploadPostComment(\"$parentID\", \"" . str_replace('"', '\"', $comment) . "\");fetchComment()'/></p>
</table>
您需要引用字段。如果您的字段是整数,则不需要引用它,如果它是一个字符串则需要。我引用了这两个因为我不知道parentID是字符串id还是数字id。当然,做你的应用程序需要。
更新:关于Michael关于破坏评论是否包含引用的评论。我们现在逃避$ comment中的所有双引号以防止这种情况发生。
答案 1 :(得分:1)
<input type='submit' value='UPLOAD' onclick='uploadPostComment($parentID, $comment);fetchComment()'/>
是您的罪魁祸首,尤其是uploadPostComment($parentID, $comment);
- 如果$ comment是一个字符串,则需要加上引号:uploadPostComment($parentID, \"$comment\");
答案 2 :(得分:0)
将字符串换行为转义双引号,例如\"$comment\"
$comment = "7b";
echo"
<table>
<p><input type='text' id='newPostComment' value='' placeholder='WRITE YOUR COMMENT HERE...' size='35'/><input type='submit' value='UPLOAD' onclick='uploadPostComment(\"$parentID\", \"$comment\");fetchComment()'/></p>
</table>