在Firefox中设置window.pageYOffset什么都不做?

时间:2016-09-07 12:21:16

标签: javascript firefox

我使用的是最新版本的Firefox。

我只是想让窗口滚动回到提交表单之前的位置。

在页面的html头部有代码: if (sessionStorage.top !== null) { window.pageYOffset = sessionStorage.top; }

以后调用验证函数,其中包含以下行: sessionStorage.top = window.pageYOffset; 由于此函数提交表单,因此页面会自动重新加载。

我已经验证了调用验证函数,一直执行包括上面的行。

我已经验证了html头中的代码正在执行(包括if语句中的内容 - sessionStorage.top不为空。

我已经确认sessionStorage.topwindow.pageYOffset都设置为630。

然而窗口保持在0(零)位置。

我已经尝试将window.pageYOffset直接设置为630,这也没有做任何事情。页面保持在最顶层(默认)位置。

我错过了什么?

1 个答案:

答案 0 :(得分:-1)

因为它是只读的吗?使用module.exports = function(config) { config.set({ // base path that will be used to resolve all patterns (eg. files, exclude) basePath: '', // frameworks to use // available frameworks: https://npmjs.org/browse/keyword/karma-adapter frameworks: ['jasmine'], // list of files / patterns to load in the browser files: [ 'WebContent/assets/js/angular1.4.3/angular.js', 'WebContent/assets/js/angular1.4.3/angular-*.js', 'WebContent/assets/js/**/*.js', 'WebContent/apps/gapsweb/**/*.js', 'WebContent/apps/gapsweb/gaps.bootstrap.js', 'WebContent/apps/gapsweb/components/**/*.test.js' ], // list of files to exclude exclude: [ 'WebContent/assets/js/translation/*.js' ], // preprocess matching files before serving them to the browser // available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor preprocessors: { }, // test results reporter to use // possible values: 'dots', 'progress' // available reporters: https://npmjs.org/browse/keyword/karma-reporter reporters: ['progress'], // web server port port: 9876, // enable / disable colors in the output (reporters and logs) colors: true, // level of logging // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG logLevel: config.LOG_INFO, // enable / disable watching file and executing tests whenever any file changes autoWatch: true, // start these browsers // available browser launchers: https://npmjs.org/browse/keyword/karma-launcher browsers: ['Chrome'], // Continuous Integration mode // if true, Karma captures browsers, runs the tests and exits singleRun: true, // Concurrency level // how many browser should be started simultaneous concurrency: Infinity })}; 设置滚动位置。