关于onlick事件和javascript的问题
我自己写的js:
<script><br /><br />function openweb(lid,td)<br />{<br /><br />window.location="list.php?lid="+lid+"&td="+td;<br />return true;<br /><br />}<br />function openmenu(td)<br />{<br /> <br />window.location="menu_list.php?td="+td;<br />return;<br />}<br /><br /><br /></script>
<a href="javascript:openweb(38,5)">111</a>
<a href="#“ onlick=”openweb(38,5)">111</a>