1234567891011121314151617181920212223 |
- function showStateFunc(categoryName, state, id, aId, href){
- //state == true 为已经登录
- var html = $("#"+id);
- if(state){
- console.log("用户已经登陆")
- var link = $("<a>", {
- href: href, // 设置链接的href属性
- text: categoryName, // 设置链接的文本
- id: aId // 可选:添加一个ID
- });
- html.append(link);
- }else{
- console.log("用户未登录")
- if("招聘信息" !== categoryName && "优质岗位" !== categoryName){
- var link = $("<a>", {
- href: href, // 设置链接的href属性
- text: categoryName, // 设置链接的文本
- id: aId // 可选:添加一个ID
- });
- html.append(link);
- }
- }
- }
|