站长论坛

标题: 对textarea中的内容,进行选中后,加效果 [打印本页]

作者: tznktg    时间: 2007-9-27 23:00
标题: 对textarea中的内容,进行选中后,加效果
此效果可以用在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">选中我,点击加粗




欢迎光临 站长论坛 (http://tzlink.com/bbs/) Powered by Discuz! X3.2