开始我用了什么的方式,但是从连接看不到参数,所以我想改成href=javascript:这样的形式
hello href这个可以用
There is no Action mapped for namespace [/] and action name [javascript:alert('ä½ å¥½')] associated with context path [/xxxx]. |
查看可以但是点击的网页也跳转了,输出[object],因为window.open返回的对象
查看javascript错误,return语句在函数外
最后改成
function openwin(url){
window.open(url,'_blank','resizable=1,width=900,height=400');
}