音乐类
txt
static
False
function PlayCheckedMusic(form) {
var ids = "";
var temp = document.getElementById(form);
for (var i = 0; i < temp.elements.length; i++) {
var e = temp.elements[i];
if (e.type == "checkbox") {
if (e.checked == true) {
ids = ids + e.value + ',';
}
}
}
if (ids == "") {
alert("请选择要播放的歌曲");
return false;
}
ids = ids.substring(0, ids.length - 1);
SetCookie("MusicListCollection", ids, 30, "/", "", false);
window.location="{PE.Label id="取得节点链接路径" nodeId="98" /}";
}
]]>