在 test.php 中:
<?php
$result = "test";
echo '<script type="text/javascript">parent.showThanksDiv(\"<?php echo $result;?>\");</script>';
?>
并在 test.html
<script type="text/javascript">
function showThanksDiv(text){
document.getElementById("myThanksDivtext").value = text;
}
</script>
那是行不通的。它接缝我没有正确传递 php 变量。有任何想法吗?