- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<分区>
我一直在搜索这些东西,但找不到任何地方。当我搜索按钮名称和值时,到处都提到输入类型=按钮
但我正在寻找 button type=submit 而不是 input type=button我想允许用户删除他们的评论。所以,删除按钮就像一个链接一样显示
HTML 是
<button class="likeslink" type="submit" name="delcom" value="<?php echo $comid ?>"><small>Delete</small></button>
我不知道如何检查这个按钮是否被点击或没有像我尝试的那样使用 php
<?php
if(isset('delcom'))
{
$sql = "DELETE FROM comments WHERE id = :id";
$stmt = $DB->prepare($sql);
$stmt->bindValue(":id", $comid);
$stmt->execute();
}
?>
但它不起作用。
同时,我想要一个确认删除查询的弹出警告消息,包括删除或取消按钮
我不想在页面顶部显示简单的 javascript 警报。我想要在屏幕中间有一些带有我自己的配色方案的弹出窗口
请帮忙
我遇到过这个 html: 上面的html和这个有什么区别: 最佳答案 来自MDN page on the tag : 对于 type 的属性标签,可能的值是: 提交:按钮将表单数据提交给服务器
Button button= (Button) findViewbyID(R.id.button); 和 Button button = new Button(this); 有什么区别? 最佳答案 有
我是一名优秀的程序员,十分优秀!