浏览代码

fe8 mathan

Ivan Asmer 7 年之前
父节点
当前提交
6d69589219
共有 1 个文件被更改,包括 18 次插入0 次删除
  1. 18 0
      module_.md

+ 18 - 0
module_.md

@@ -1,3 +1,21 @@
+```
+var tasks = []
+$("h2").each(function(){
+    var text = $(this).text().split(' ')
+    var name = text[0]
+    var weight = text[1]
+    tasks.push({name: name, weight: weight}) 
+})
+
+var rate = 10;
+var randomValues = tasks.map(function(item){
+    return Math.random()*(10-(rate - item.weight))
+})
+
+alert(tasks[randomValues.indexOf(Math.max.apply(Math, randomValues))].name)
+```
+
+
 ## Галерея 8
 Галерея (img, prev, next) + лента thumbnails. Hashlinks (?)
 ```javascript