|
|
此效果可以用在Ubb论坛中。
<script language="JavaScript">
<!--
function bold(){
Qr=document.selection.createRange().text;
if(!Qr || document.selection.createRange().parentElement().name!='description'){
txt=prompt('Text to be made BOLD.','');
if(txt!=null && txt!='')document.form1.description.value+=''+txt+'';
}else{
document.selection.createRange().text=''+document.selection.createRange().text+'';
document.selection.empty();
}
}
//-->
</script>
<form name="form1">
<input type="button" value="加粗" onclick="bold();" />
<textarea name="description">选中我,点击加粗 |
|