Calling Java inside JavaScript Function

后端 未结 8 975
时光取名叫无心
时光取名叫无心 2020-12-04 02:26

Please tell me if we can call java inside javascript function ?


    

        
8条回答
  •  南方客
    南方客 (楼主)
    2020-12-04 02:36

    Use JSP code

        <% 
        // Respond to the application with 1) result, 2) update, and 3) updateid values
        String result = "blablabla";
    
        out.print(result); 
        %>
    

提交回复
热议问题