updaate JS
This commit is contained in:
+8
-4
@@ -7,9 +7,12 @@ try {
|
||||
VOD.vod_name = pdfh(html1, "h2&&Text");
|
||||
// VOD.vod_pic = pdfh(html1, ".item-root&&img&&src");
|
||||
VOD.vod_pic = pdfh(html1, ".item-root&&img&&data-src");
|
||||
VOD.vod_actor = pdfh(html1, ".celebrity&&Text");
|
||||
VOD.vod_area = pdfh(html1, ".country&&Text");
|
||||
VOD.vod_year = pdfh(html1, ".year&&Text");
|
||||
// VOD.vod_actor = pdfh(html1, ".celebrity&&Text");
|
||||
VOD.vod_actor = pdfh(html1, ".meta:eq(4)&&Text");
|
||||
// VOD.vod_area = pdfh(html1, ".country&&Text");
|
||||
VOD.vod_area = pdfh(html1, ".meta:eq(3)&&Text");
|
||||
// VOD.vod_year = pdfh(html1, ".year&&Text");
|
||||
VOD.vod_year = pdfh(html1, ".meta:eq(2)&&Text");
|
||||
VOD.vod_remarks = "";
|
||||
VOD.vod_director = "";
|
||||
VOD.vod_content = "";
|
||||
@@ -95,5 +98,6 @@ var rule = {
|
||||
// 一级:'.v-list&&div.item;p&&Text;img&&src;;a&&href', //一级的内容是推荐或者点播时候的一级匹配
|
||||
一级:'.v-list&&div.item;p&&Text;img&&data-src;;a&&href', //一级的内容是推荐或者点播时候的一级匹配
|
||||
二级:二级,
|
||||
搜索:'#search-result&&.media;h5&&a&&Text;a&&img&&data-src;.label&&Text;a&&href',//第三个是描述,一般显示更新或者完结
|
||||
// 搜索:'#search-result&&.media;h5&&a&&Text;a&&img&&data-src;.label&&Text;a&&href',//第三个是描述,一般显示更新或者完结
|
||||
搜索:'.col-md-8&&.media;h5&&a&&Text;a&&img&&data-src;.label&&Text;a&&href',//第三个是描述,一般显示更新或者完结
|
||||
}
|
||||
Reference in New Issue
Block a user