当前位置:
代码迷
>>
综合
>> 钉钉打卡怎么设虚拟位置
详细解决方案
钉钉打卡怎么设虚拟位置
热度:
20
发布时间:
2023-09-07 23:59:33.0
钉钉打卡怎么设虚拟位置
<script> function Employee(name, age, title, salary)//括号里的东东是参数,还是属性?如何遍历? { this.name = name; this.age = age; this.title = title; this.salary = salary; this.promotion = promotion; } function promotion(new_title,percent_raise) { var salary_increase = this.salary * percent_raise; this.salary = this.salary + salary_increase; this.title = new_title; } function newdx(){ var aq=new Employee("aq",22,"qigai",3000) alert(aq.name+"的职业是"+aq.title+",薪水是"+aq.salary) aq.promotion("bangzhu",1) alert(aq.name+"的新职业是"+aq.title+",薪水是"+aq.salary) } newdx() </script>
[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]
诘屈聱牙
<script> function hutia(){ for(var i=0;i<arguments.length;i++)document.write(arguments[i]+","); document.write(""); } hutia(1,2,3,4); hutia("haha","hehe", true, false); hutia("Show me the money", "Operation cwal", "Food for thought", "the gathering"); </script>
[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]
钉钉打卡怎么设虚拟位置
查看全文
相关解决方案