我还在训练, 但我坚持这个问题。
// we need this password in 2 form POST
<input style='text' name='password' />
<form action='delete.php' method='POST'>
... // i need password to be here
<input type='submit' name='delete' value='Del' />
</form>
<form action='edit.php' method='POST'>
... // and i need password to be here too
<input type='submit' name='edit' value='Edit' />
</form>
我的心灵想要使用2表格来做这个,但我需要在这2表格之外的输入密码。
有没有办法在不使用脚本的情况下执行此操作?
我可以使用1个表单和action.php
来执行此操作,其中包含2个php文件(edit.php
和delete.php
)
但他说这是浪费。
有人可以帮忙吗?我已经使用搜索引擎进行检查,但一无所获。
答案 0 :(得分:0)
也许你的导师只是测试你如何解决这种情况..据我所知...你不能在提交时传递文本框的值而不将文本框放在表单中...我只是想知道为什么javascript被禁止..好吧无论如何我建议你使用1个表单和1个页面进行操作,并在操作中创建一个if语句来分隔你删除和编辑方法..也许在这种情况下它不浪费..它只是只是一个建议..