能够实现!
根据你的代码来看我想可能是因为onsubmit="return infoadd()"用了return而没有在相应的函数中设置返回值而造成的
改成如下试试
function infoadd(){
messageform.senderInfo.value="公司名称:"+messageform.senderComp.value+"公司地址"+messageform.compAdds.value;
return true;
}
如果不行我再看看!