如何调用php函数单击复选框而不使用AJAX或任何东西

时间:2012-12-06 12:16:07

标签: php html

一个普通的'复选框'输入'表单',我在PHP的回音“”中有

<input type='checkBox' onclick='if(this.checked) {selectItem(".$row['serial_no'].",".$user_id.")}'>


function selectItem($serial_no,$user_id){echo $serial_no;}

它们都在PHP文件中....为什么单击复选框时不调用该函数?

1 个答案:

答案 0 :(得分:1)

因为PHP仅在页面加载时运行,而不是在页面加载后运行。这就是您需要使用Ajax从PHP获取值的原因