在我发起一个 JS 应用程序后,我正在使用这两个函数来设置和重置元标记
function setMeta(){
alert("meta set");
$('meta[name=viewport]').attr('content', 'width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, user-scalable=0');
}
function resetMeta(){
alert("meta reset");
$('meta[name=viewport]').attr('content', ' width=device-width, initial-scale=1.0,maximum-scale=1.6, user-scalable=yes, user-scalable=1');
}
我的问题:初始比例属性的默认值是什么。如果我不重置它,它会保持设置为 1.0。
更新问题:如果我打开我的 JS 应用程序的页面被缩放。当我打开对话框时,页面没有像 setMeta 函数那样设置为 1.0 缩放。问题可能出在哪里?其他属性像user-scalable
工作正常......