jsp中怎么将jsp定义的参数传给javascript定义的函数???

类别:Java 点击:0 评论:0 推荐:
   jsp中怎么将jsp定义的参数传给javascript定义的函数?
例如:
       <%String str1,str2;
           //从数据库中得到多个str1,str2
         //在此项调用  drawline(str1,str2)
     %>
    <script>
  function drawline(str1,str2)
  {
    //函数的内容
  }


应该怎么处理??
谢谢

本文地址:http://com.8s8s.com/it/it14449.htm