作者dpnu (闲人)
看板Web_Design
标题Re: [问题] textarea里面怎麽建立超连结?
时间Sun May 16 10:49:16 2004
※ 引述《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"
"
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
1F:→ garbo:非常感谢^^ 218.163.168.155 05/16