<script language="JavaScript">function initOption(type) {
  document.forms[0].myOp.options.length = 0;  <logic:iterate id="myOpNumList" indexId="index" name="SiteForm" property="myOpNumList" type="com.common.vo.basic.myOpForm">
   document.forms[0].myOp.options.add(new Option("<bean:write name='myOpNumList' property='label' filter='false'/>","<bean:write name='myOpNumList' property='ID'/>"));
  </logic:iterate>}
这里<bean:write name='myOpNumList' property='label' filter='false'/>取得的label内容中有双引号,会导致页面出错,该如何处理?这里这能在页面处理,不能在后台直接替换。
谢谢~~ 急啊~~
小弟新手啊