Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 PHP 的 echo"" 中拥有的普通“复选框”输入“表单”
<input type='checkBox' onclick='if(this.checked) {selectItem(".$row['serial_no'].",".$user_id.")}'> function selectItem($serial_no,$user_id){echo $serial_no;}
它们都在 PHP 文件中....为什么单击复选框时不调用该函数?
因为 PHP 只在页面加载时运行,而不是之后。这就是为什么您需要使用 Ajax 从 PHP 中获取值的原因