空のdiv要素があり、HTMLtext領域があり、2つのドロップダウンリストが1つあり、もう1つはフォント名用で、もう1つはフォント用ですサイズ。ASP.netでのHTMLテキスト領域のフォント名とサイズの変更
Nowテキストエリアに何かを書き込むと、ドロップダウンリストからフォント名を選択すると、テキストがテキストエリアにすぐに反映されるはずです。どうすればいいですか?
は、ここに私のコードです:
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
For Each f As System.Drawing.FontFamily In System.Drawing.FontFamily.Families
DropFont.Items.Add(f.Name)
Next
End Sub
これは私の設計コードです:あなたはあなたが何をしたいかを達成するために、クライアント側スクリプトを使用する必要があるとしている
<div class="exampe">
<textarea name="TextBox1" rows="2" id="TextBox1" cols="20"></textarea>
</div>
<asp:DropDownList ID="DropFontSize" runat="server">
<asp:ListItem Value="6">6</asp:ListItem>
<asp:ListItem Value="8">8</asp:ListItem>
<asp:ListItem Value="10">10</asp:ListItem>
<asp:ListItem Value="12">12</asp:ListItem>
<asp:ListItem Value="14">14</asp:ListItem>
<asp:ListItem Value="18">18</asp:ListItem>
<asp:ListItem Value="24">24</asp:ListItem>
<asp:ListItem Value="32">32</asp:ListItem>
<asp:ListItem Value="36">36</asp:ListItem>
<asp:ListItem Value="40">40</asp:ListItem>
<asp:ListItem Value="48">48</asp:ListItem>
<asp:ListItem Value="52">52</asp:ListItem>
<asp:ListItem Value="56">56</asp:ListItem>
<asp:ListItem Value="62">62</asp:ListItem>
<asp:ListItem Value="68">68</asp:ListItem>
<asp:ListItem Value="72">72</asp:ListItem>
</asp:DropDownList>
あなたは私のサンプルを提供することができますで開始する。 – coder