HTML-How To Set onclick to be AutoClick
hey, I'm trying to set an html file to click automaticaly on Login Button.开发者_开发问答 How Can I do it. I try : onclick="window.open(this.href,'_self')". it dosen't work.
If you simply want to trigger a click when the page loads you could use:
onLoad="window.open(this.href,'_self')"
精彩评论