Existe-t-il un moyen de mettre CC Quid, numéro de demande, titre de demande et de la même manière en gras, je ne veux pas que leur valeur soit en gras. Toute suggestion sera appréciée..
html = html + "<table border ='0'>";
html= html + "<tr>";
html =html + "<td>CC Quid: " +(data.response.docs[0].c_cc_guid)+"</td></tr>";
html =html + "<tr><td>Application Number: " +(data.response.docs[0].c_application_number)+"</td></tr>";
html =html + "<tr><td>Application Title: " +(data.response.docs[0].c_application_title)+"</td></tr>";
html =html + "<tr><td>Application Type Name: " +(data.response.docs[0].c_application_type_name)+"</td></tr>";
html =html + "<tr><td>Case Mgr Name: " +(data.response.docs[0].c_case_mgr_name)+"</td></tr>";
html =html + "<tr><td>Filed Date: " +(data.response.docs[0].c_filed_date)+"</td></tr>";
html =html + "<tr><td>Lead Atny Name: " +(data.response.docs[0].c_lead_atny_name)+"</td></tr>";
html =html + "</table>";
Entourez ce que vous voulez être audacieux avec:
<span style="font-weight:bold">Your bold text</span>
Cela irait dans votre balise <td>
.
Enveloppez le nom dans une étendue, donnez-lui une classe et attribuez un style à cette classe:
<td><span class="names">Name text you want bold</span> rest of your text</td>
style:
.names { font-weight: bold; }
Je comprends peut-être mal votre question, alors excuses-moi si je le suis.
Si vous cherchez les mots "Quid", "Numéro de la demande", etc. en gras, insérez-les dans les balises <strong>
:
<strong>Quid</strong>: ...
J'espère que cela pourra aider!
tu peux essayer ça
td.setAttribute("style", "font-weight:bold");
Essaye ça
.Bold { font-weight: bold; }
<span> normal text</span> <br>
<span class="Bold"> bold text</span> <br>
<span> normal text</span> <spanspan>