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.
我有一个在 Div 中制作的自定义复选框
<div class="zs" name="toggle" state="on" id="zs"></div>
该复选框具有开/关切换功能,并且状态属性在单击时更改为开/关。
div 放置在提交中,但我不知道如何从 php 获取 $_POST['toggle'] 以接收属性“state”
浏览器只会发送input并select带有表单提交的标签,而不是div. 听起来您可能想将值存储在 hidden inputIE 中:
input
select
div
<input type='hidden' name='toggle' value='on' />
然后添加到您已经使用的任何 javascript 以适当地设置值。