- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我试图为用户提供对文本显示的一些控制。我使用 document.getElementsByClassName 来定位父选择器内的所有选择器(具有类 basic-text-frame)。除了 myfunction8(控制 fontWeight)之外,一切都运行顺利当删除它的CSS时有什么想法吗?
function myFunction3() {
var cols = document.getElementsByClassName("Basic-Text-Frame");
for (i = 0; i < cols.length; i++) {
cols[i].style.fontSize = "x-large";
}
}
function myFunction4() {
var cols = document.getElementsByClassName("Basic-Text-Frame");
for (i = 0; i < cols.length; i++) {
cols[i].style.fontSize = "large";
}
}
function myFunction5() {
var cols = document.getElementsByClassName("Basic-Text-Frame");
for (i = 0; i < cols.length; i++) {
cols[i].style.fontSize = "16px";
}
}
function myFunction6() {
var cols = document.getElementsByClassName("Basic-Text-Frame");
for (i = 0; i < cols.length; i++) {
cols[i].style.fontSize = "small";
}
}
function myFunction7() {
var cols = document.getElementsByClassName("Basic-Text-Frame");
for (i = 0; i < cols.length; i++) {
cols[i].style.fontSize = "x-small";
}
}
function myFunction8() {
var cols = document.getElementsByClassName("Basic-Text-Frame");
for (i = 0; i < cols.length; i++) {
cols[i].style.fontWeight = "900";
}
}
.Basic-Text-Frame {
margin: 10px;
}
p.SubEnglish {
-epub-ruby-position: over;
color: #231f20;
direction: rtl;
font-family: "WinSoft Pro", sans-serif;
font-size: 1.3em;
font-style: normal;
font-variant: normal;
font-weight: 500;
line-height: 1.4;
margin-bottom: 0px;
margin-left: 0px;
margin-right: 0px;
text-align: justify;
text-decoration: none;
text-indent: 0px;
}
h4.SmallEnglish {
-epub-ruby-position: over;
color: #231f20;
direction: rtl;
font-family: "WinSoft Pro", sans-serif;
font-size: 1.3em;
font-style: normal;
font-variant: normal;
font-weight: 500;
line-height: 1.3;
margin-bottom: 0px;
margin-left: 0px;
margin-right: 30px;
text-align: justify;
text-decoration: none;
text-indent: -16px;
}
h1.Latin {
-epub-ruby-position: over;
color: #166827;
direction: rtl;
font-family: "WinSoft Pro", serif;
font-size: 2em;
font-style: normal;
font-variant: normal;
font-weight: bold;
line-height: 1.3;
margin-bottom: 10px;
margin-left: 0px;
margin-right: 0px;
text-align: center;
text-decoration: none;
text-indent: 0px;
}
h2.English {
-epub-ruby-position: over;
color: #25408f;
direction: rtl;
font-family: "WinSoft Pro", serif;
font-size: 1.5em;
font-style: normal;
font-variant: normal;
font-weight: bold;
line-height: 1.2;
margin-top: 30px;
margin-bottom: 10px;
margin-left: 0px;
margin-right: 0px;
text-align: justify;
text-decoration: none;
text-indent: 0px;
}
h3.Num {
-epub-ruby-position: over;
color: #231f20;
direction: rtl;
font-family: "WinSoft Pro", sans-serif;
font-size: 1.3em;
font-style: normal;
font-variant: normal;
font-weight: 500;
line-height: 1.3;
margin-top: 10px;
margin-bottom: 0px;
margin-left: 0px;
margin-right: 0px;
text-align: justify;
text-decoration: none;
text-indent: 0px;
}
<!DOCTYPE html>
<meta http-equiv="Content-Type" content="text/html" ; charset="UTF-8">
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>1-1</title>
<link href="../../css/Book.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="../../js/Book.js"></script>
</head>
<body id="x1" xml:lang="en-US">
<div class="buttons"> <button class="button" onclick="myFunction3()">bigger</button> <button class="button" onclick="myFunction4()">big</button> <button class="button" onclick="myFunction5()">normal</button> <button class="button" onclick="myFunction6()">small</button>
<button
class="button" onclick="myFunction7()">smaller</button> <button class="button" onclick="myFunction8()">fontWieght</button> </div>
<div class="Basic-Text-Frame">
<p class="SubEnglish">lorem <b>this is bold</b> ipsum lorem ipsum <b> this is also bold </b>ipsum lorem ipsumlorem ipsum lorem ipsum lorem ipsum lorem ipsum.</p>
<h4 class="SmallEnglish"><b class="char-style-override-4">d.</b> lorem ipsum lorem ipsum lorem ipsum lorem ipsm lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum.</h4>
<p class="SubEnglish"><span class="Normal char-style-override-4">lorem ipsum lorem ipsum lorem ipsum lorem im lorem psum lorem ipsum lorem ipsum lorem ipsum.</span></p>
<h1 id="toc_marker-1" class="Latin"><span class="char-style-override-3">I. </span>lorem ipsum<span class="char-style-override-3"></span></h1>
<h2 id="toc_marker-1-1" class="English">A. lorem ipsum lorem ipsum lorem ipsum (active pharmaceutical ingredient<span> </span>(API))</h2>
<h3 class="Num"><b class="char-style-override-4">1.</b> lorem ipsum<b class="char-style-override-4"> This is bold</b> lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsumlorem ipsum lorem ipsumlorem ipsum.</h3>
<h2 id="toc_marker-1-3" class="English">C. lorem ipsum lorem ipsum lorem ipsumlorem ipsum lorem ipsum</h2>
</div>
</body>
</html>
最佳答案
如果你不想改变你的 CSS 结构:
function goDeep(element, cssObj){
var e = element.getElementsByTagName('*');
for(var i=0,l=e.length; i<l; i++){
for(var p in cssObj){
e[i].style[p] = cssObj[p];
}
}
}
function myFunction8() {
var cols = document.getElementsByClassName('Basic-Text-Frame'), css = {fontWeight:'900'};
for(var i=0,l=cols.length; i<l; i++){
goDeep(cols[i], css);
}
}
关于javascript - style.fontWeight 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49990722/
我正在编写一个简单的测验应用程序。它工作正常,直到我尝试编辑所选单选按钮的字体var labelStyle = userpick.style.fontWeight; 有人能发现问题吗? 此外,如果可能
我尝试设置 Button 的 fontWeight,但字体粗细仍然相同。 我的按钮 我该如何解决这个问题? 最佳答案 要设置FontWeight,您必须实际设置 FontWeight。 请参阅下面我
在我的通用 Windows 平台应用程序中,我有一个 TextBlock,其 DataContext 是一个自定义类: ... 我的自定义类有一个属性 IsOpen。如果为真,则 Text
我正在尝试通过按下按钮将文本区域内的文本切换为粗体或非粗体。我有以下代码: function bold() { var ta = document.getElementById("textAr
我试图为用户提供对文本显示的一些控制。我使用 document.getElementsByClassName 来定位父选择器内的所有选择器(具有类 basic-text-frame)。除了 myfun
当在我的数据网格中选择一行并按下一个按钮时,我想将该行中单元格的 FontWeight 更改为粗体。 我一直在寻找一种方法来做到这一点,但我所能做的就是改变每一列的样式,我找不到一种方法来获取选定的行
安装 Visual Studio 2012 并打开 Silverlight 5 项目后,我遇到了与 TypeConverter 相关的各种设计时错误,例如: The TypeConverter for
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭
如何在不为每个粗细指定新系列的情况下选择不同的字体粗细? fonts: - family: Montserrat fonts: - asset: assets/fonts/Mon
我一直在设置一个资源字典来为我的 WPF 应用程序中的所有控件设置样式,并且在设置标签的字体粗细时我发现了一些奇怪的行为。 我必须为标签设置样式,第一个使用正常字体粗细: 第二
我设法按照 official documentation 在我的 react-native expo 应用程序上加载自定义字体: const App = () => { let [fontsLoa
在 Flutter 中设置字体粗细时,我通常使用预设值,例如 FontWeight.normal 或 FontWeight.w500。在我目前的情况下,我需要设置自定义 FontWeight。如何将字
image pubspec 我要设置Noir Pro作为我的 flutter 应用程序的默认字体系列。 默认 Roboto fontFamily 更改为 NoirPro 但字体粗细 e.g(.w400
我正在尝试以下代码: fig, ax1 = plt.subplots() #data is a geopandas DataFrame data.plot(ax=ax1, kind='bar', co
我正在尝试以下代码: fig, ax1 = plt.subplots() #data is a geopandas DataFrame data.plot(ax=ax1, kind='bar', co
我必须在我的 CustomControl 中创建一个 FontWeight 属性,但它在控制 FontWeights 时出错。我该如何解决? 属性(property)登记: public static
我的 Flutter 应用程序中有一个图标(特定的后退图标)。它看起来更轻。由于某些原因,我想让它变得大胆/增加重量。 Container( child: Icon( Icon
我正在为我的 flutter 应用程序使用 google 图表库,并且我正在尝试自定义标签的样式。 但是如何更改 TextStyleSpec 的字体粗细?参数 fontWeight 要求提供 Stri
我正在尝试对 Animated.Text 的 fontWeight 进行动画处理,但无法使其正常工作。 1。插值 const titleFontWeight = this.positionTitle1
我正在尝试在 td 上实现此 css 规则 const boldText = { fontWeight: 'bold' } Content 但它抛出以下错误: [ts] Type '{ sty
我是一名优秀的程序员,十分优秀!