Re: [問題] textarea裡面怎麼建立超連結?

看板Web_Design作者 (閑人)時間20年前 (2004/05/16 18:45), 編輯推噓0(001)
留言1則, 1人參與, 最新討論串2/2 (看更多)
※ 引述《nightmuse (New-Logic epoch)》之銘言: : ※ 引述《garbo (有PTT真好)》之銘言: : : 感謝之前熱心的人教了我textarea這項指令 : : 不過現在又跑出了疑問 : : 我想在textarea裡建立超連結不過怎麼試都沒辦法 : : 還有建立的textarea用ie瀏覽時竟然可以用mouse在上面刪去文字 : : 是我哪裡做錯了嗎?? : IFRAME範例: : <IFRAME align=center name="target" scrolling=yes src="xxxxx.htm" : width=999 height=999></IFRAME> : name="target" 框架名稱 : scrolling=yes 顯示捲軸 : src="xxxx.htm" 要嵌入的網頁 : width=999 寬 : height=999 高 你祗是想要有捲軸吧, 如果不需要載入其它網頁,可以用 css style 中的 overflow: auto 超出區域就會有捲軸。 例子: <?xml version="1.0" encoding="big5"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "" rel="nofollow">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="zh-TW"> <head> <title>測試</title> <meta http-equiv="Content-Language" content="zh-tw" /> <meta http-equiv="Content-Type" content="text/html; charset=big5" /> <style type="text/css"> /*<![CDATA[*/ .textbox { width: 400px; height: 100px; padding: 3px; margin: 2px; border-top: 3px solid threedlightshadow; border-right: 3px solid threedshadow; border-bottom: 3px solid threedshadow; border-left: 3px solid threedlightshadow; background: window; overflow: auto; } /*]]>*/ </style> </head> <body> <div class="textbox"> <p>字字</p> <p>字字</p> <p><a href="ptt">ptt</a></p> </div> </body> </html> -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 203.70.203.114

218.163.168.155 05/16, , 1F
非常感謝^^
218.163.168.155 05/16, 1F
文章代碼(AID): #10fqOuvQ (Web_Design)
文章代碼(AID): #10fqOuvQ (Web_Design)