本帖最后由 fwmlove333 于 2011-07-14 17:31:19 编辑

解决方案 »

  1.   

    <s:a href="#" onclick="openBrWindowInCentre('<s:property value=ediurl/>',250,100)">edit</s:a>
    直接使用<s:property 即可,value为你的<s:url 的id
      

  2.   

    概括的说,就是怎么在新窗口里面打开一个带参数的url,用STRUTS2标签哦
      

  3.   

    %{}跟<s:property 是一样效果的吧,刚试过没用哦。。
      

  4.   

    <s:a href="#" onclick="openBrWindowInCentre('<s:property value=ediurl/>',250,100)">edit</s:a>
    直接使用<s:property 即可,value为你的<s:url 的id不要使用<s:a
    使用普通的a标签<a href="#" onclick="openBrWindowInCentre('<s:property value=ediurl/>',250,100)">edit</a>这样即可,因为你写的<s:a 中没有用到任何与<s:a有关的变量,属性等。
      

  5.   

    哈哈哈哈我居然忘了最重要的。。'%{xxx}'加上单引号就OK了。。