关于javascript:如何添加js条件

how to add a js condition

您好!我想在JS中编写一个导致添加外部JS的条件。例如,如果条件是x>2并且它是真的,那么我希望它加载一个不同的外部JS文件,但是如果它是假的,那么加载另一个JS文件。我怎么写?谢谢


1
2
3
4
5
6
7
8
  var fileref=document.createElement('script')
  fileref.setAttribute("type","text/javascript")
  if (x > 2){
     fileref.setAttribute("src","/js/file1.js")
 }else{
     fileref.setAttribute("src","/js/file2.js")
 }
 document.body.appendChild(fileref);


你可以写:

1
2
if(conditon)
   $('body').append("<script src='whatever'><" +"/script>");