<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no, minimal-ui"/>
<meta name="format-detection" content="telephone=no, email=no"/>
<style>
::-webkit-search-cancel-button { display: none; }
</style>
<script type="text/javascript">
function seacherKeyDown(e){
//搜索判断是移动端还是pc端
var e = e || window.event;
if(e.keyCode == 13){
var leftVal = $.trim($("#js_id_seach").val());
if(leftVal==0 || leftVal=='搜索关键字'){
$("#js_id_seach").focus();
}else{
window.location.href='/was5/web/search?channelid=294808&searchword='+encodeURIComponent(leftVal);
}
}
}
</script>
</head>
<body>
<form action="#" target="testif">
<input type="search" placeholder="搜医生、搜疾病" onkeypress="seacherKeyDown(event)"
id="js_id_seach" style="width: 300px;height: 50px;"/>
<iframe name="testif" style="display: none;"></iframe>
</form>
</body>
</html>