I want to open a different website in a new window when someone visits my site. It will be called one time per session.
How can I implement this?
onload of body call window.open("your web url")
<body onload="window.open('your web url')"/>
I want to open a different website in a new window when someone visits my site. It will be called one time per session.
How can I implement this?
onload of body call window.open("your web url")
<body onload="window.open('your web url')"/>
精彩评论