本文介绍了重载后是否可以执行功能......?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一组代码

setTimeout(function() {
   window.location.reload(true);
   if ($scope.attribute.parentAttribute.id) {
       angular.element(document.getElementById($scope.attribute.parentAttribute.id)).click();
   }
}, 1000);

我正在使用超时,我需要在窗口后执行该点击功能.location.reload(true); 由此行重新加载原因。是否有可能?

I am using a timeout, I need to execute that click function after window.location.reload(true); reload cause by this line. Is it possible?

推荐答案

在此处定义onload事件的处理程序。这将在页面加载后触发(重新加载没有区别):

Define your handler for the onload event here. This will trigger after a page load (reload is no different):

object.onload=function(){myScript}; //in this case object = window

来源:

这篇关于重载后是否可以执行功能......?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-24 21:14