In the value part of an Event Handler Attribute 'this' means the element that has the event handler attribute, and can be used to access its properties, such as style. It could be done with document.getElementById() but 'this' is a good bit cleaner. If it's another element buried deep in the page it is easier to use the keyword this, if you can. To access various properties (such as style attribute/property) you have to specify the object that is being changed-- most elements have style attributes and you have to be clear which element you are accessing. If it's the body then document.body.style.theStyle='some-value' is fine since it's one layer deep in the DOM tree.
Click to cross out. Double click to remove the line.