PHP beginner |
|
Ik heb deze tutorial gevolgd i.v.m. het maken van een WYSIWYG-editor: http://www.site...WYG_editor
Alles werkt, maar een tekst wordt (standaard) in Times New Roman weergegeven.
In de editor die ik heb gemaakt is het niet mogelijk om van font te veranderen (dit vond ik niet relevant voor hetgene waar ik deze voor wil gebruiken), maar ik wil dus dat het standaard in arial 10 wordt weergegeven.
Mijn code:
<script language="javascript">
function seteditFrame(){
if(window.navigator.appName == "Microsoft Internet Explorer")
iframe.document.designMode = "on";
if(window.navigator.appName == "Netscape")
document.getElementById('iframe').contentDocument.designMode = "on";
}
function bold() {
document.getElementById("iframe").contentWindow.document.execCommand("bold", false, null);
}
function italic() {
document.getElementById("iframe").contentWindow.document.execCommand("italic", false, null);
}
function underline() {
document.getElementById("iframe").contentWindow.document.execCommand("underline", false, null);
}
function strikethrough() {
document.getElementById("iframe").contentWindow.document.execCommand("strikethrough", false, null);
}
function subscript() {
document.getElementById("iframe").contentWindow.document.execCommand("subscript", false, null);
}
function superscript() {
document.getElementById("iframe").contentWindow.document.execCommand("superscript", false, null);
}
function setList() {
document.getElementById("iframe").contentWindow.document.execCommand("InsertUnorderedList", false, null);
}
function makeLink() {
if(window.navigator.appName == "Microsoft Internet Explorer"){
document.getElementById("iframe").contentWindow.document.execCommand("createLink");
}else{
url = prompt("Voor de URL in:", "http://");
document.getElementById("iframe").contentWindow.document.execCommand("createLink", false, url);
}
}
</script>
<script language="javascript"> function seteditFrame(){ if(window.navigator.appName == "Microsoft Internet Explorer") iframe.document.designMode = "on"; if(window.navigator.appName == "Netscape") document.getElementById('iframe').contentDocument.designMode = "on"; } function bold() { document.getElementById("iframe").contentWindow.document.execCommand("bold", false, null); } function italic() { document.getElementById("iframe").contentWindow.document.execCommand("italic", false, null); } function underline() { document.getElementById("iframe").contentWindow.document.execCommand("underline", false, null); } function strikethrough() { document.getElementById("iframe").contentWindow.document.execCommand("strikethrough", false, null); } function subscript() { document.getElementById("iframe").contentWindow.document.execCommand("subscript", false, null); } function superscript() { document.getElementById("iframe").contentWindow.document.execCommand("superscript", false, null); } function setList() { document.getElementById("iframe").contentWindow.document.execCommand("InsertUnorderedList", false, null); } function makeLink() { if(window.navigator.appName == "Microsoft Internet Explorer"){ document.getElementById("iframe").contentWindow.document.execCommand("createLink"); }else{ url = prompt("Voor de URL in:", "http://"); document.getElementById("iframe").contentWindow.document.execCommand("createLink", false, url); } } </script>
|