Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

C++에서 JavaScript 함수를 호출하는 방법은 무엇입니까?


C++에서 JavaScript 함수를 호출하려면 함수를 호출하는 js 파일을 생성하십시오. 웹 페이지는 JS를 로드하고 함수는 실행됩니다 -

int callId = 0;
void callFunction() {
   // the js file
   ofstream fout("generate.js");
   fout << "caller(" << callId ++ << ", display);";
}
// code

HTML

<html>
   <body>
      <script>
         var callId = 0;
         function caller(i, func) {
            if (callId < i ) {
               callId = i;
               func();
            }
         }    
         function display() {
            alert("my Function called");
         }
         // load js script
         function loadScript(file) {
            var myId = "gh";
            var e = document.getElementById(myId);
            if ( e != null )
            e.parentNode.removeChild(e);
            var script = document.createElement("script");
            script.myId = myId;
            script.src = file;
            document.body.appendChild(script);
         }
         window.setInterval(function() {
            //path to the js file
            loadScript("file:///path/generate.js");
         }, 2000);
      </script>
   </body>
</html>