发布信息
const params = new URLSearchParams(window.location.search);
const category = params.get('category');
const rules = {
housing:{ title:"📌 房屋发布规则", text:"请注明房屋位置、价格、入住时间。禁止发布虚假房源。" },
jobs:{ title:"📌 工作发布规则", text:"请注明职位、薪资、工作地点。禁止发布违法招聘信息。" },
market:{ title:"📌 二手交易规则", text:"请真实描述商品情况和价格,交易双方自行确认。" },
forum:{ title:"📌 论坛交流规则", text:"请文明交流,禁止广告刷屏、恶意攻击。" }
};
if(rules[category]){
document.getElementById("post-rules-box").innerHTML=
`
${rules[category].title}
${rules[category].text}
`;
}
