I have a page where users see this anchor...
Test
Is it possible to execute/call `launchSomething(.....)` function without having the user to click it? If the params were fixed values then I could just do something like ...
//on document.ready() {
// launchSomething( .... );
//}
but the web page is generated dynamically and these params change too so what do I need to do to trigger it automatically once the web page has loaded?
thanks for help.
UPDATE
I have just got the markup changed to
Test
so it always has a class "click1" That is no valid HTML, btw. Do you generate that page yourself?
以上就是Trigger JavaScript Anchor Function (Without User Clicking on it)的详细内容,更多请关注web前端其它相关文章!