function addHref(des){
var selectedText="";
if(window.getSelection&&des != undefined){//相容非IE瀏覽器,由於非IE瀏覽器需要給定操作的元素ID才可以取得輸入元素中選取的內容,因此需要輸入ID
var textField=document.getElementById(des);
var selectionStart=textField.selectionStart;
var selectionEndtextField.selection=textField.selection=textField.selection=textField.selection=textField. ;
if(selectionStart != undefined && selectionEnd != undefined){
selectedText=textField.value.substring(selectionStart,selectionEnd);
}
if(selected
alert("請選擇需要新增連結的文字!");
return;
}
var hyperlinks=prompt("超連結位址:","");
if(hyperlinks !=null){
var replaceString="" selectedText "";
tmpStr=textField.value;
textField.value=tmpStr.substring(0,selectionStart) replaceString tmpStr.substring(selectionEnd,tmpStr.length);
}
}
else if((document.selection)&&(document.selection.type == "Text")){//IE中不需要ID
var range=document.selection. createRange();
var formerElement=range.parentElement();
if(formerElement.tagName!="TEXTAREA"){
alert("請在指定位置選擇需要新增超連結的文字! ");
return;
}
selectedText=range.text;
var hyperlinks=prompt("超連結位址:","");
if(hyperlinks!=null) {
range.text="" selectedText " ";
}
}
else{
alert("請選擇需要新增連結的文字!");
return;
}
}