var input = $("input").html()/val()
if(input == ""){console.log("input空")}
利用 html 和 css 实现不了,这个需要使用 js 来进行判断。 js 有 浏览器BOM 方法,window.navigator.userAgent 可以检测用户代理(即使用什么设备)通过这函数来进行检测,如果是 安卓或ios 系统则跳转到 移动端页面 否则跳转到 pc 端页面。<script type="text/javascript">function getBrowser(){ //判断浏览器是在android系统上还是在ios系统上if ((navigator.userAgent.match(/(phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i))) {window.location.href = "web/index.html"//移动端页面}else{window.location.href="pc/index.html"//pc端页面}}getBrowser()</script>欢迎分享,转载请注明来源:内存溢出
评论列表(0条)