欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

PHP添加一个按钮的2中方式,单引号和双引号2种写法。

程序员文章站 2022-03-24 23:29:46
...
php代码
echo "<input type='button' onclick=\"window.location='index.php'\" value='查询' />";
echo '<input type="button" onclick="window.location=\'index.php\'" value="查询" />';