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();