织梦网站dedecms模版增加导航下面广告位通栏图只显示一半
看看有没有加上{dede:pagelist listitem="info,index,end,pre,next,pageno" listsize="5"/}分页的代码!要是加上那个了看看上面的标签是{dede:list}{/dede:list}吗???只有这个才能显示1234的分页导航
代码如下:
<form id="form1" action="" method="post" runat="server">
<input name="inp" id="inp" value="1" />
</form>
方法一:
我们可以通过就是id实现 ,代码如下:
documentgetElementById("form1")reset();
通过name实现,代码如下:
documentformNamereset();
方法二:
逐一清空,代码如下:
$("#inp")val("1");
但是表单太多的话可以如下写,代码如下:
$("input")val("");
设表单的默认值加type为reset的input ,代码如下:
<form id="form1" action="" method="post" runat="server">
<input name="inp" id="inp" value="1" />
<input id="res" name="res" type="reset" style="display:none;" />
</form>
<script>
$("input[name='res']")click();
</script>
<div style="width:1000px;height:90px;">
改为
<div style="width:1000px;height:200px;">
height控制元素高度
0条评论