2012年4月27日 16:50:29
jsp代码:
<select id="addTradpnameId" onchange="getprojectByCode(addTradpnameId,pnameId)" style="width:150px;"></select>
js代码:
//添加商标:项目分类与项目名称
function getprojectByCode(sid,printid){
alert(sid);
alert(printid);
var selcode = $("#"+sid).val();
alert(selcode);
sendRequest("trademark!getProjectByCode.action?selCode="+selcode,"#"+printid);
}
这时就会显示不是定义的属性
但是要是这样写,就是对的
<select id="addTradpnameId" onchange="getprojectByCode('addTradpnameId','pnameId')" style="width:150px;"></select>
所以以后一定要注意这些细节的,在平时的工作中有很多的细节,究其原因还是自己对原理不懂。
但是我们可以进行积累,有时间了在去研究原理,这只是一句托词。