layout: post title: 网页祝福卡 categories:
一个简单的电子贺卡, 用于测试动态网页即URL参数的使用. <br/> <br/>
祝福文字 <input type="box" id="text" value="祝大家新年快乐!" /> <br/>
<input type="button" value="创建网址" onClick="genWeb()" style="width:100px;" />
<input type="box" id="web" value="" style="width:500px;" /> <br/>
<input type="button" value="查看效果" onClick="openWeb()" style="width:100px;" />
<script> var $=function(id){return document.getElementById(id)}; function genWeb() { $("web").value="http://jerkwin.github.io/2014/12/21/eCard?text="+$("text").value } function openWeb() { $("web").value="http://jerkwin.github.io/2014/12/21/eCard?text="+$("text").value window.open($("web").value) } </script>