开发者

open js file in html button onclick

开发者 https://www.devze.com 2023-03-30 18:40 出处:网络
I am currently working in HTML and JavaScript. I am Beginner. I want to open a javascript file in the开发者_StackOverflow中文版 onclick event of the button which is in my html file. is there any metho

I am currently working in HTML and JavaScript. I am Beginner. I want to open a javascript file in the开发者_StackOverflow中文版 onclick event of the button which is in my html file. is there any method to do this. kindly help me.

thanks in advance.


It think you mean it "Load" instead of open

You can 'Load' JS file dynamically using following code

  var fileref = document.createElement('script')
  fileref.setAttribute("type","text/javascript")
  fileref.setAttribute("src", yourfilename)
0

精彩评论

暂无评论...
验证码 换一张
取 消