input onfocus
<!--html 輸入框預設文字滑鼠滑入預設文字消失--> <input type="text" size="7" onfocus="if (this.value=='http://') this.value='';" onblur="if (this.value=='') this.value='http://';" value="http://"> <input type="button" value="搜尋">
input onclick
<!--html--> <!--連結--> <input name="" type="button" value="登入" onclick="window.location.href='index.aspx'"/> <!--連結另開視窗--> <input name="" type="button" value="瀏覽前台" onclick="window.open('../ap/index.aspx');"/>