获取贝壳新房列表

1、获取本页新房列表

javascript 复制代码
// 贝壳新房名称提取,自动复制到剪贴板
const names = Array.from(document.querySelectorAll('.resblock-name .name, .building-wrapper .name'))
  .map(el => el.textContent.trim());
copy(names.join('\n'));
console.log('✅ 已复制以下内容到剪贴板:\n' + names.join('\n'));

2、获取所有页的新房列表自动翻下一页,带暂停导出按钮

javascript 复制代码
// === 修复版:无行号污染 + 控制台纯文本输出 + 页面按钮 ===
let collectedData = [];
let isRunning = true;
let pageCount = 0;

// 1. 创建页面控制按钮
function createControlPanel() {
  const panel = document.createElement('div');
  panel.id = 'fang-collector-panel';
  panel.style.cssText = `
    position: fixed; top: 10px; right: 10px; z-index: 99999;
    background: #fff; padding: 10px; border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2); display: flex; gap: 8px;
  `;

  const pauseBtn = document.createElement('button');
  pauseBtn.id = 'pause-btn';
  pauseBtn.textContent = '暂停采集';
  pauseBtn.style.cssText = `
    padding: 6px 12px; border: none; border-radius: 4px;
    background: #ff9500; color: #fff; cursor: pointer;
  `;
  pauseBtn.onclick = () => {
    isRunning = !isRunning;
    pauseBtn.textContent = isRunning ? '暂停采集' : '继续采集';
    pauseBtn.style.background = isRunning ? '#ff9500' : '#4CAF50';
    if (isRunning) {
      console.log('▶️ 继续采集...');
      goToNextPage();
    } else {
      console.log('⏸️ 已暂停');
    }
  };

  const exportBtn = document.createElement('button');
  exportBtn.textContent = '导出Excel';
  exportBtn.style.cssText = `
    padding: 6px 12px; border: none; border-radius: 4px;
    background: #2196F3; color: #fff; cursor: pointer;
  `;
  exportBtn.onclick = () => exportToCSV();

  panel.appendChild(pauseBtn);
  panel.appendChild(exportBtn);
  document.body.appendChild(panel);
}

// 2. 采集当前页数据,同时用纯文本输出(避免控制台行号污染)
function collectCurrentPage() {
  const listItems = document.querySelectorAll('.resblock-list');
  const hotItems = document.querySelectorAll('.building-list-item');
  const currentPageNames = [];

  listItems.forEach(item => {
    const name = item.querySelector('.resblock-name .name')?.textContent.trim();
    if (!name) return;
    currentPageNames.push(name);
    collectedData.push({
      名称: name,
      均价: item.querySelector('.main-price .number')?.textContent.trim() + ' ' + (item.querySelector('.main-price .desc')?.textContent.trim() || ''),
      总价范围: item.querySelector('.second')?.textContent.trim() || '',
      户型: item.querySelector('.resblock-room')?.textContent.trim().replace(/\s+/g, ' ') || '',
      地址: item.querySelector('.resblock-location')?.textContent.trim() || '',
      标签: Array.from(item.querySelectorAll('.resblock-tag span')).map(t => t.textContent.trim()).join(', '),
      来源: '主列表'
    });
  });

  hotItems.forEach(item => {
    const name = item.querySelector('.building-wrapper .name')?.textContent.trim();
    if (!name) return;
    currentPageNames.push(name);
    collectedData.push({
      名称: name,
      均价: item.querySelector('.price-wrapper .price')?.textContent.trim() + ' ' + (item.querySelector('.price-wrapper .unit')?.textContent.trim() || ''),
      总价范围: '',
      户型: '',
      地址: '',
      标签: `${item.querySelector('.building-wrapper .type')?.textContent.trim()}, ${item.querySelector('.building-wrapper .status')?.textContent.trim()}`,
      来源: '热门楼盘'
    });
  });

  // 用console.log一次性打印整页所有名称,控制台只会输出文本,不会带行号
  console.log(`\n===== 第 ${pageCount + 1} 页楼盘 =====`);
  console.log(currentPageNames.join('\n'));
  console.log(`✅ 第 ${pageCount + 1} 页采集完成,当前共收集 ${collectedData.length} 个楼盘`);

  pageCount++;
}

// 3. 自动翻页
function goToNextPage() {
  if (!isRunning) return;

  collectCurrentPage();
  const nextBtn = document.querySelector('.page-box .next:not(.disabled)');
  if (nextBtn) {
    console.log('➡️ 点击下一页...\n');
    nextBtn.click();
    setTimeout(goToNextPage, 1500);
  } else {
    console.log('✅ 已到达最后一页,采集完成!');
    document.getElementById('pause-btn').textContent = '采集完成';
    document.getElementById('pause-btn').disabled = true;
    exportToCSV();
  }
}

// 4. 导出CSV
function exportToCSV() {
  if (collectedData.length === 0) {
    console.log('❌ 没有采集到任何数据');
    return;
  }
  const headers = Object.keys(collectedData[0]);
  const rows = collectedData.map(row => 
    headers.map(key => `"${(row[key] || '').replace(/"/g, '""')}"`).join(',')
  );
  const csvContent = '\uFEFF' + [headers.join(','), ...rows].join('\n');
  const blob = new Blob([csvContent], { type: 'text/csv;charset=utf-8;' });
  const url = URL.createObjectURL(blob);
  const link = document.createElement('a');
  link.href = url;
  link.download = `贝壳新房数据_${new Date().toLocaleDateString()}.csv`;
  document.body.appendChild(link);
  link.click();
  document.body.removeChild(link);
  URL.revokeObjectURL(url);
  console.log(`📥 已导出 ${collectedData.length} 条数据到CSV文件!`);
}

// 5. 启动
createControlPanel();
console.log('🚀 采集开始!页面右上角有【暂停/继续】和【导出Excel】按钮');
goToNextPage();
相关推荐
源图客11 分钟前
境外电商 - 龙虾智能体-综合选品推荐报告
开发语言·javascript·ecmascript
磊 子23 分钟前
C++设计模式
javascript·c++·设计模式
梵得儿SHI30 分钟前
Vue 项目实战与性能优化全攻略:从代码、渲染到首屏,一站式解决卡顿慢加载
前端·vue.js·性能优化·vite·前端面试·前端优化·首屏优化
ShyanZh33 分钟前
【skill】HTML PPT Skill:用 Claude Code 一句话生成专业演示文稿
前端·ai·html·powerpoint·skill
AI视觉网奇39 分钟前
three教学 3d资产拼接源代码
前端·css·css3
程序猿阿伟1 小时前
《Chrome标签组搭建多任务高效浏览指南》
前端·chrome
2601_958352902 小时前
双麦 DSP 音频模块实战:一文梳理 A-68 在全行业场景的声学解决方案与落地要点
前端·嵌入式硬件·音视频·语音识别·降噪消回音·音频处理模块
智码看视界2 小时前
老梁聊全栈:JavaScript 原型链深入探索对象继承的奥秘
前端·javascript·ecmascript
智码看视界2 小时前
老梁聊全栈系列 JavaScript语言本质:从原型链到异步编程的深度解析
开发语言·javascript·全栈·javascript核心
布朗克1682 小时前
39 Spring Boot Web实战
前端·spring boot·后端·实战