html怎么用div做按钮?如下面这张图...
如何用黄色div按钮代替提交按钮?(登陆按钮id是apDiv2)如何修改这段代码?<formaction="index.php"method="post"><inputt...
如何用黄色div按钮代替提交按钮?(登陆按钮id是apDiv2)如何修改这段代码?
<form action="index.php" method="post">
<input type=password width="200" height="30" name=password></input>
<input type=submit value="提交"></input>
</form> 展开
<form action="index.php" method="post">
<input type=password width="200" height="30" name=password></input>
<input type=submit value="提交"></input>
</form> 展开
展开全部
需要准备的材料分别有:电脑、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样式。
展开全部
你的意思是想点击div后提交form表单吧
可以用js实现
给这个div添加onclick时间
<form id="aaa" action="">
</form>
$("div").click(function() {
$("#aaa").submit();
});
我这是用jquery的
可以用js实现
给这个div添加onclick时间
<form id="aaa" action="">
</form>
$("div").click(function() {
$("#aaa").submit();
});
我这是用jquery的
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<button style="border:none;width:120px;height:40px; border-radius:18px;background-color:yellow;">登陆</button>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |