html怎么用div做按钮?如下面这张图...

发布网友 发布时间:2022-04-23 03:24

我来回答

4个回答

热心网友 时间:2022-04-20 09:41

需要准备的材料分别有:电脑、chrome浏览器、html编辑器。

1、首先,打开html编辑器,新建一个html文件,例如:index.html,填充问题基础代码。

2、其次,在index.html中的按钮标签中,输入样式代码:

style="width: 80px; height: 40px;background-color: #e6b900; border: 0px;border-radius: 3px;"

3、浏览器运行index.html页面,此时成功将提交按钮修改为*div样式。

热心网友 时间:2022-04-20 10:59

需要准备的材料分别有:电脑、浏览器、html编辑器。

1、首先,打开html编辑器,新建html文件,例如:index.html,输入问题基础代码。

2、在index.html中的按钮标签中,输入样式代码:

style="width: 100px; height: 50px;background-color: #ff7701; border: 0px; border-radius: 5px;"

3、浏览器运行index.html页面,此时提交按钮被成功替换为*div。

热心网友 时间:2022-04-20 12:34

你的意思是想点击div后提交form表单吧
可以用js实现
给这个div添加onclick时间
<form id="aaa" action="">
</form>

$("div").click(function() {
$("#aaa").submit();

});
我这是用jquery的

热心网友 时间:2022-04-20 14:25

<button style="border:none;width:120px;height:40px; border-radius:18px;background-color:yellow;">登陆</button>

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com