Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
680 views
in Technique[技术] by (71.8m points)

php - Executing an external javascript once every few seconds

I have a javascript code once every few seconds, I have tried the following, but it doesn't work. I know something is off. Just can't figure it out.

<script src="https://example.com/js/one.js"></script>
<script>
setInterval(function() {
Example.init({
    "argument1": "param1",
    "argument2": "param2",
});
},10000);)();
</script>

I have inserted the above code in header.php


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Try removing the brackets at the end.

setInterval(function() {
  console.log(1)
}, 1000);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...