Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直在试图弄清楚如何实现这一目标,但没有取得任何成功。
将不胜感激一些帮助。
我有一个input[type="submit"].
input[type="submit"]
它的基值始终为"Next > some more text"。
"Next > some more text"
<em>我不想在零件周围添加一个,"Next >"这样我最终会得到 "<em>Next ></em> some more text".
<em>
"Next >"
"<em>Next ></em> some more text"
有任何想法吗?
你可以只使用:
input[type=submit] { font-style: italic; }
JS 小提琴演示。
虽然不幸的是,这会使整个元素的文本斜体,而不是特定部分。
元素不能包含任何其他 HTML ,input因此不可能value用em元素包装 。
input
value
em
但是,如果您使用了button元素,则可以使用:
button
<button> <em>Next ></em> some more text </button>
然后为按钮添加一个 id:
$("#btnId").attr('value', 'New Text Goes here');