提交按钮把提交两个字去掉
未知
2021-11-03 14:25:25
0次
<form action="{$searchurl}" method="get">
<input class="fl" name="keyword" placeholder="请输入搜索关键词" type="text">
<input class="ip01 fl" type="button" >
<script type="text/javascript">
$(".ip01").click(function(){
$(this).attr('type','submit');
$(this).val('');
})
</script>
相关内容
MySQL变量类型与用途
MySQL支持多种数据类型,包括数值、字符串、日期和时间等类型,以...
2024-11-20 20:23:37
MySQL变量类型列表
MySQL变量类型包括数值、字符串、日期和时间等类型,用于存储不同...
2024-11-20 19:46:45
MySQL变量数据类型介绍
MySQL支持多种数据类型,包括数值、字符串、日期时间及枚举和集合...
2024-11-20 19:23:39
MySQL排序函数的使用
MySQL提供了丰富的排序功能,可通过ORDER BY子句、CAS...
2024-11-19 23:46:38