first commit
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
<?xml version="1.0"?>
|
||||
<root>
|
||||
<LabelType>音乐类</LabelType>
|
||||
<LabelIntro>
|
||||
</LabelIntro>
|
||||
<OutType>txt</OutType>
|
||||
<LabelDataType>static</LabelDataType>
|
||||
<EnabelAjax>False</EnabelAjax>
|
||||
<LabelTemplate><![CDATA[ <script type="text/javascript">
|
||||
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" /}";
|
||||
}
|
||||
</script>]]></LabelTemplate>
|
||||
</root>
|
||||
Reference in New Issue
Block a user