提交 f4fd90a7 编写于 作者: D Devil

商品详情页面弹窗兼容性优化

上级 18fd2014
...@@ -654,7 +654,9 @@ $(function() { ...@@ -654,7 +654,9 @@ $(function() {
// 浏览器窗口实时事件 // 浏览器窗口实时事件
$(window).resize(function() $(window).resize(function()
{ {
if($(document.activeElement).attr('id') != 'text_box') var name = document.activeElement.tagName;
var arr = ['INPUT', 'SELECT', 'TEXTAREA', 'BUTTON'];
if(arr.indexOf(name) == -1)
{ {
// 规格显示/隐藏处理 // 规格显示/隐藏处理
if($(window).width() < 1025) if($(window).width() < 1025)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册