如果我不向函数 myFunction 传递任何参数,它会很好地工作,但如果我传递一个像“$word”这样的参数,它就不起作用。
无参数:php 文件:
<?php
......
$word="bulabula";
$hint="<li onclick='myFunction()'>" . $word . "</li>";
......
echo $hint;
?>
.html 文件:......
<script>
function myFunction(){
document.getElementById("s_form_q").value="bulabula";
}
</script>
使用参数:php 文件:
<?php
......
$word="bulabula";
$hint="<li onclick='myFunction($word)'>" . $word . "</li>";
......
echo $hint;
?>
.html 文件:......
<script>
function myFunction(str){
document.getElementById("s_form_q").value=str;
}