Finally I found a solution to this though I don't understand the problem completely. Why does this lead to an error:
...
function allowdrop(event) {
event.preventDefault();
}
var spkart = document.getElementById ('spaltemu');
spkart.ondragover = 'allowdrop(event)';
while thisone works:
spkart.ondragover = function(event) {
event.preventDefault();
};
Nevertheless I found a solution ...
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…