作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在这里发现了类似的问题,但不是我要找的。
我想在点击 html 标签 <a>
时发送表单,用java脚本。我的问题是我不知道我把名字放在哪里,所以我可以稍后使用 php isset 函数。
这就是我所做的,但它不起作用:
<?php
if (isset($_POST['test'])) {
echo "Test Kappa 123";
}
?>
<form method="post" action="<?=$site_link?>user/<?=$username?>" id="form_options">
<a href="javascript:void();" name="test" onclick="document.getElementById('form_options').submit();"> Radnom text </a>
</form>
最佳答案
您可以将值放置在隐藏
输入字段中,如下所示:
<?php
if (isset($_POST['test'])) {
echo "Test Kappa 123";
}
?>
<form method="post" action="<?=$site_link?>user/<?=$username?>" id="form_options">
<input type="hidden" name="test" value="test value" />
<a href="#" onclick="document.getElementById('form_options').submit(); return false"> Radnom text </a>
</form>
注意:我对您的代码进行了一些更改。
关于javascript - 在标签 <a> 上使用 JS 执行表单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37357241/
我是一名优秀的程序员,十分优秀!