网站被写JS木马的问题

JavaScript014

网站被写JS木马的问题,第1张

网页中有木马病毒吧,试试金山网盾,我也建议你安装专业的杀毒软件,一般情况下,电脑中毒或者中木马或者病毒之后,木马病毒都会破坏系统的,一般杀毒软件是不能解决这些问题的,推荐你使用金山毒霸2011云安全杀毒软件,我现在正使用这个,资源占用少,而且查杀效果也很好的。我是在百度搜索金山毒霸2011,看到第一个就是最新免费下载的地址我就点击下载了!挺好的

function Wood() {

this.num = 1000

this.body()

}

Wood.prototype = {

fell : function (that) {

that.num = that.num - 1

return "这棵树还剩下:" + that.num + "木头"

},

body : function () {

var that = this

var body = document.createElement("input")

body.type = "button"

body.value = "这棵树还剩下:" + this.num + "木头"

body.onclick = function () {

this.value = that.fell(that)

}

document.body.appendChild(body)

}

}

window.onload = function () {

var woods = new Wood()

}