您好,这是我的 html 代码。我基本上尝试的是:
1-用户在 textaea id="tArea" 中粘贴一些内容
2-当他点击一个名为“完成”的按钮时,textarea 的内容被分配给具有 id="tDiv" 的 div 的内部 html
3-讨论的 Div 对其内容应用了不同的字体系列(使用 css3 并且它工作得很好),但是当用户的数据变大时,div 既不能提供滚动条也不能自动调整它的高度。
请帮助,我已经消耗了很多小时,但我仍然迷路了!
<!DOCTYPE html>
<html>
<head>
<meta name=viewport content="user-scalable=no,width=device-width" />
<link rel=stylesheet href="resources/jquery.mobile.css" />
<script src="resources/jquery.js"></script>
<script src="resources/jquery.mobile.js"></script>
<style>
@font-face {
font-family: 'Donegal One';
font-style: normal;
font-weight: 400;
src: url(fontfile.ttf) format('truetype');
}
.hindi, textarea {
font-family: 'Donegal One', serif !important;
overflow:auto;
-webkit-overflow-scrolling:touch;
}
</style>
<script>
</script>
</head>
<body>
<div data-role=page id=sendMoneyWin data-add-back-btn=true>
<div data-role=header data-theme="c" >
<h1>Font Changer</h1>
</div>
<div data-role=content>
<script>
function transformFont(){
$("#tDiv").html($("#tArea").attr("value"));
//$("#tArea").css("display","none");
$("#tArea").prop("readonly",true);
$("#tDiv").css("display","block");
$("#doneBtn").css("display","none");
$("#reloadBtn").css("display","inline");
}
function clearAllAndReload(){
$("#tDiv").html("");
$("#tArea").attr("value","")
//$("#tArea").css("display","block");
//$("#tDiv").css("display","none");
$("#tArea").prop("readonly",false);
$("#doneBtn").css("display","inline");
$("#reloadBtn").css("display","none");
}
</script>
<b>Please paste the contents here, in the below text box :</b><br />
<span id="reloadBtn" style="display:none;"><input type="button" value=" Reload " onClick="clearAllAndReload()" data-inline=true/></span>
<span id="doneBtn" ><input type="button" value=" Done " onClick="transformFont()" data-inline=true /></span>
<textarea id="tArea" class="hindi" style="" ></textarea>
<div id="tDiv" class="hindi" data-scroll='true' style="white-space: pre-wrap;overflow:visible;-webkit-overflow-scrolling:touch;display:none;"></div>
</div>
<div data-role=footer data-theme="c">
<span style="float:right;"><small>Created & Maintained by TechBhardwaj, 2012 </small></span>
</div>
</div>
</body>
</html>