Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
function funktion(o,a,b)
{
if(document.selection)
{
o.focus();
document.selection.createRange().text=
a+document.selection.createRange().text+b;
document.selection.createRange().select();
}
else if (o.selectionStart || o.selectionStart == '0')
{
intStart = o.selectionStart;
intEnd = o.selectionEnd;
strText=String(o.value).substring(intStart,intEnd);
o.value = (o.value).substring(0, intStart) + a + strText +
b+ (o.value).substring(intEnd, o.value.length);
o.selectionStart=intStart;
o.selectionEnd=o.selectionStart+String(a+b+strText).length;
o.focus();
}
}
wo befindet sich dieser markierte Text?
Falls es ein Formularfeld ist...
function funktion(o,a,b)
{
if(document.selection)
{
o.focus();
document.selection.createRange().text=
a+document.selection.createRange().text+b;
document.selection.createRange().select();
}
else if (o.selectionStart || o.selectionStart == '0')
{
intStart = o.selectionStart;
intEnd = o.selectionEnd;
strText=String(o.value).substring(intStart,intEnd);
o.value = (o.value).substring(0, intStart) + a + strText +
b+ (o.value).substring(intEnd, o.value.length);
o.selectionStart=intStart;
o.selectionEnd=o.selectionStart+String(a+b+strText).length;
o.focus();
}
}
Dazu könnte ich etwas sagen wenn ich wüsste, was du machst ;-]Ich weiss nicht... vieleicht mache ich etwas falsch :-(,
aber bei mir tut sich gar nichts.
mfg thco
<script language="JavaScript">
function funktion(o,a,b){
if(document.selection){
o.focus();
document.selection.createRange().text=
a+document.selection.createRange().text+b;
document.selection.createRange().select();
}
else if (o.selectionStart || o.selectionStart == '0'){
intStart = o.selectionStart;
intEnd = o.selectionEnd;
strText=String(o.value).substring(intStart,intEnd);
o.value = (o.value).substring(0, intStart) + a + strText +
b+ (o.value).substring(intEnd, o.value.length);
o.selectionStart=intStart;
o.selectionEnd=o.selectionStart+String(a+b+strText).length;
o.focus();
}
}
</script>
<p>
<input type="button" value="Einfügen" onclick="funktion('textfeld', 'zuvor', 'danach');" />
</p>
<p>
<textarea cols="80" rows="6" name="textfeld"></textarea>
</p>
<input type="button" value="Einfügen" onclick="funktion(document.getElementsByName('textfeld')[0], 'zuvor', 'danach');" />
function funktion(o,a,b){
if(document.selection){
o.focus();
document.selection.createRange().text = a+document.selection.createRange().text+b;
var t = document.selection.createRange();
t.moveStart('character', String(a).length);
t.moveEnd('character', -String(b).length);
t.select();
}else if (o.selectionStart || o.selectionStart == '0'){
intStart = o.selectionStart;
intEnd = o.selectionEnd;
strText=String(o.value).substring(intStart,intEnd);
o.value = (o.value).substring(0, intStart) + a + strText + b + (o.value).substring(intEnd, o.value.length);
o.selectionStart = intStart + String(a).length;
o.selectionEnd = intStart + String(a+strText).length;
o.focus();
}
}