js 파일 에서 js 를 호출 하 는 실현 방법 소결

1210 단어 jsjs 호출
방법 1:Jsfile01.js=======

//
document.write(" <script language=\"javascript\" src="\/com\/ Js_file02.js \" > <\/script>");
방법 2:html 코드 프로그램 코드

<html>
<body>
<input type="button" value="ok" onclick="javascript:fun_b()">
</body>
// , <body>...</body> :
<script language="JAVASCRIPT" src='Js_b.js'> </script>
</html>
Jsb.js ========

//
new_element=document.createElement("script");
new_element.setAttribute("type","text/javascript");
new_element.setAttribute("src"," Js_a.js");
document.body.appendChild(new_element);
function fun_b ()
{
Fun_a();
}
Js_a.js=======

//
function Fun_a ()
{
alert("a");
}
방법 3:Jsfile01.js ========

//
document.scripts[0].src=" Js_file02.js"

좋은 웹페이지 즐겨찾기