1、单击文字上的链接,把值传递给文本框
<form action="post.Asp" method="post" id="form1" name="form1">
<input name="Log_From" type="text" value="ASBLOG" >
<a href="#" onClick="Log_From.value='网络采集'">网络收集</a>
<a href="#" onClick="Log_From.value='本站原创'">本站原创</a>
<a href="#" onClick="Log_From.value='本站整理'">本站整理</a>
</form>
2、网页自动跳转
方法一、<meta http-equiv="refresh" content="20; url=http://www.china-code.net"> ;content属性为设定跳转的时间。
3、单击复选框或附加文本实现层的弹出和隐藏效果
<form action="Post.Asp" method="post" id="form1" name="form1">
<input name="Show" type="checkbox" onClick="document.getElementById('Show_Content').style.display=(this.checked)?'block':'none'" checked>
<span style="padding-right:6px;font-weight: bold;Cursor: Pointer;"><a onClick="document.getElementById('Show').click()">单击文本弹出层</a></span>
<div id="Show_Content">
<p>单击文本弹出层</p>
<p>单击复选框弹出层</p>
</div>
</form>
<form action="post.Asp" method="post" id="form1" name="form1">
<input name="Log_From" type="text" value="ASBLOG" >
<a href="#" onClick="Log_From.value='网络采集'">网络收集</a>
<a href="#" onClick="Log_From.value='本站原创'">本站原创</a>
<a href="#" onClick="Log_From.value='本站整理'">本站整理</a>
</form>
2、网页自动跳转
方法一、<meta http-equiv="refresh" content="20; url=http://www.china-code.net"> ;content属性为设定跳转的时间。
3、单击复选框或附加文本实现层的弹出和隐藏效果
<form action="Post.Asp" method="post" id="form1" name="form1">
<input name="Show" type="checkbox" onClick="document.getElementById('Show_Content').style.display=(this.checked)?'block':'none'" checked>
<span style="padding-right:6px;font-weight: bold;Cursor: Pointer;"><a onClick="document.getElementById('Show').click()">单击文本弹出层</a></span>
<div id="Show_Content">
<p>单击文本弹出层</p>
<p>单击复选框弹出层</p>
</div>
</form>