html – 我们如何只加粗表td标签中的名称而不是值

前端之家收集整理的这篇文章主要介绍了html – 我们如何只加粗表td标签中的名称而不是值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有什么办法可以让CC Quid,应用程序编号,应用程序标题以及粗体中的其他内容相同,我不希望它们的值是粗体.任何建议将不胜感激..
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>";

解决方法

围绕你想要大胆的东西:
<span style="font-weight:bold">Your bold text</span>

这将进入你的< td>标签.

原文链接:https://www.f2er.com/html/226677.html

猜你在找的HTML相关文章