如何用我自己定义的值替换 screen.width 值?
我想定义一个假的screen.width
:
var screen.width = 1024;
在<head>
因此,当下面的代码加载时,它将始终显示 =<h1>test 2</h1>
在任何screen.width
我正在使用以下代码:
<script type="text/javascript">
if (screen.width>=1400)
{
document.write('<h1>test 1</h1>');
}else
{
document.write('<h1>test 2</h1>');
}
</script>
希望我能清楚地解释我的问题。