Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.1k views
Welcome To Ask or Share your Answers For Others

1 Answer

Try removing the brackets at the end.

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...