我正致力于自定义页面,并希望更改特定字段的文本以呈现为粗体。当我用铬检查现场时,它有
<span id="_Datacomp_name" class="VIEWBOX" style="WIDTH:"100px"">testCompany</span>
如何使用JQUERY选择此字段然后将其设为粗体?
我理解HTML,但我是JQUERY的新手。
我认为使用它会起作用:
<script src="ajax.googleapis.com/.../jquery.min.js"></script>
<script>
$(document).ready(function(){
$("#_Datacomp_name").AwesomeBoldFunctionHere;
</script>
答案 0 :(得分:2)
尝试this:
$("#_Datacomp_name").css("font-weight", "bold");
答案 1 :(得分:0)
$(function() {
$('#_Datacomp_name').css('fontWeight', 'bold');
});
Documentation: jQuery.css Working demo
并且......如果您想知道$(function() { })
语法 jQuery.ready :
以下所有三种语法都是等效的:
$( document ).ready( handler )
$().ready( handler ) (this is not recommended)
$( handler )
成为handler
function() { }
答案 2 :(得分:0)
在JavaScript中,你可以这样做,
document.getElementById("_Datacomp_name").style.fontweight = "bold";
在JQuery中,
$("#_Datacomp_name").css("font-weight", "bold");
在CSS中,
#_Datacomp_name {
font-weight:bold;
}