<h3>萌典查生字</h3>
<script type="text/javascript">
$(document).ready(function(){
$("#get_moedict").click(function(event) {
});
$("#search_moedict").keypress(function(e){
code = (e.keyCode ? e.keyCode : e.which);
if (code == 13)
{
$.colorbox({
iframe:true ,
width:'80%' ,
height:'90%'});
}
});
});
</script>
<div class="input-group">
<input type="text" id="search_moedict" class="form-control" placeholder="請輸入生字或生詞">
<span class="input-group-btn">
<a href="#" class="btn btn-primary cboxElement" id="get_moedict">查生字</a>
</span>
</div>