問:如何設置默認發布信息地區?
答:
電腦版修改template/postFrom.html
手機版修改template/postFromWap.html
用記事本打開,在最下面加入下面的代碼
<script>
ksort="默認所在地的ID";
for(i=0;i<document.postmess.address.options.length;i++)
{
if(document.postmess.address.options[i].value==ksort)
{
document.postmess.address.options[i].selected=true;
}
}
</script>