PHP beginner |
|
Ik ben bezig aan een editor, en wil de "this"-waarde meegeven.
function makeEditor(name,width,height,type) {
// Waardes uitlezen
this.name = name;
this.width = width;
this.height = height;
this.type = type;
document.write('<iframe id=\"'+ this.name +
'\" name=\"' + this.name +
'\" frameborder=\"0\"' +
'height=\"' + this.height +
'\" width=\"' + this.width +
'\" style=\"border: 1px solid #000000;\"></iframe>');
if(window.navigator.appName == "Microsoft Internet Explorer")
NAAM-DIV.document.designMode = "on";
if(window.navigator.appName == "Netscape")
document.getElementById('NAAM-DIV').contentDocument.designMode = "on";
}
function makeEditor(name,width,height,type) { // Waardes uitlezen this.name = name; this.width = width; this.height = height; this.type = type; document.write('<iframe id=\"'+ this.name + '\" name=\"' + this.name + '\" frameborder=\"0\"' + 'height=\"' + this.height + '\" width=\"' + this.width + '\" style=\"border: 1px solid #000000;\"></iframe>'); if(window.navigator.appName == "Microsoft Internet Explorer") NAAM-DIV.document.designMode = "on"; if(window.navigator.appName == "Netscape") document.getElementById('NAAM-DIV').contentDocument.designMode = "on"; }
waar "NAAM-DIV" staat, zou nu de waarde van this.naam moeten komen, anders werkt het niet, aangezien de naam variabel is.
Hoe moet het?
|