解析错误语法错误,意外 'type' (T_STRING)
Parse error syntax error, unexpected 'type' (T_STRING)
我的 php.17
里有这个
echo "<script type ='text/javascript'>
function delayer(){
window.location = 'peoplelist.html'
}
</script>";
然而,计算机回复我'解析错误:语法错误,意外'type'(T_STRING)第17行,问题是什么?
尝试添加一个;到 JS 函数中的文本末尾
<?php
echo "function delayer(){ window.location = 'peoplelist.html'; }";
?>
我的 php.17
里有这个echo "<script type ='text/javascript'>
function delayer(){
window.location = 'peoplelist.html'
}
</script>";
然而,计算机回复我'解析错误:语法错误,意外'type'(T_STRING)第17行,问题是什么?
尝试添加一个;到 JS 函数中的文本末尾
<?php
echo "function delayer(){ window.location = 'peoplelist.html'; }";
?>