This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var content=document.getElementById("m-record"); | |
var items=content.getElementsByTagName("ul")[0].getElementsByTagName("li"); | |
var ret = ""; | |
for(var i=0;i<100;i++){ | |
if (i!=-1){ | |
var n = items[i].getElementsByClassName("song")[0].getElementsByClassName("txt")[0]; | |
var title = n.getElementsByTagName("b")[0].getAttribute("title") | |
// console.log(n.getElementsByTagName("font")[2]); | |
if (n.getElementsByClassName("ar s-fc8").length >1){ | |
var author = n.getElementsByClassName("ar s-fc8")[1].getElementsByTagName("span")[0].getAttribute("title") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title>Page Title</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script> | |
<style> | |
.heart { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var txt_1 = '必须填写用户名', | |
txt_2 = '必须填写电子邮箱地址', | |
txt_3 = '邮箱地址不合法', | |
txt_4 = '必须填写评论内容'; | |
function ajaxc() { | |
var $body = (window.opera) ? (document.compatMode == "CSS1Compat" ? $('html') : $('body')) : $('html,body'); | |
var comments_order = 'DESC', | |
comment_list = '.comment-list', | |
comments = '#comments .comments-title', |