我寫了一個腳本,根據用戶選擇更改文本,該腳本工作正常。 我不確定如何使用Jquery捕獲用戶選擇的選擇並將下面的值傳遞給隱藏字段,即用用戶選擇的值示例value =「trade」替換value =「100」? -Thanksjquery捕獲值並將值傳遞給隱藏字段
JQUERY
$(document).ready(function() {
$('#trade').click(function() {
$('#form').attr("class","trade"); //trade selected
$('#trade').addClass("current");
$('.lblMadlib112').text("some text1");// adds some text to this field
});
$('#football').click(function() {
$('#formr').attr("class","football");//football
$('#football').addClass("current");
$('.lblMadlib112').text("some text here");// adds some text to this field
});
});
.NET東西
<asp:HiddenField ID="hdnThemeId" runat="server" Value="100" />
感謝。我想用例如交易的用戶選擇值替換值=「100」。 – user244394 2010-10-29 20:36:00
@ user244394 -is'#trade'輸入或...? – 2010-10-29 20:36:46
交易是用戶點擊的價值之一。我想用「交易」值或「足球」值來捕捉並更改值=「100」,具體取決於用戶點擊的內容。所以這個值變成value =「trade」或value =「football」 – user244394 2010-10-29 20:43:45