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変数を正しく渡していないことを縫い合わせています。何か案は?