粗体选择文本动态

时间:2010-11-18 21:19:43

标签: c# javascript asp.net tags

我希望动态地将Bold作为我的字符串的一部分。当我的用户在ASP.Net中选择部分文本并单击Bold按钮时,他的文本将变为Bold。 我该怎么办? 在此先感谢。

2 个答案:

答案 0 :(得分:1)

而不是someFunc中的id_123,而是使用你希望onclick注册的DOM对象的id。

<html>
<body>
    <p id="id_123" onClick="someFunc()">Here is some bolded text </p>
    <script type="text/javascript">
    function someFunc() {
        var value = document.getElementById('id_123');    
        value.setAttribute('style', 'font-weight: bold;');
    }
    </script>
</body>
</html>

答案 1 :(得分:0)

在按钮上单击向文本添加样式。

您使用的是javascript或js库,如jquery。

style=" font-weight:bold" 

http://www.eggheadcafe.com/community/aspnet/17/10144717/css-style-change-when-im-clicking-link-button.aspx