我的ASP.NET网站中有一个JavaScript脚本,我想从我的C#Code Behind中的函数中获取一个值,我从ASP.NET隐藏字段传递一个参数。
这是我的ASP.NET& JavaScript部分,我定义一个HiddenField并为其分配chatMessage
var,而不是为var赋值,并尝试将其值发送给returnLiClass()
函数。
(重要的部分是第一行,13,14,17行):
<asp:HiddenField ID="chatMessage" runat="server" />
<script type="text/javascript">
$(function () {
// Declare a proxy to reference the hub.
var chat = $.connection.chatHub;
// Create a function that the hub can call to broadcast messages.
chat.client.broadcastMessage = function (name, message) {
// Html encode display name and message.
var encodedName = $('<div />').text(name).html();
var encodedMsg = $('<div /> ').text(message).html();
var tremp_id = $('<div /> ').text("<%=Request.QueryString["trempid"]%>").html();
var chatMessage = document.getElementById('<%= chatMessage.ClientID %>');
chatMessage.value = 'value from javascript';
// Add the message to the page.
$('#discussion').append('<li class="<%=returnLiClass(chatMessage.Value)%><strong>' + encodedName
+ '</strong>: ' + encodedMsg + "Tremp:" + tremp_id + '</li>');
};
// Get the user name and store it to prepend to messages.
$('#displayname').val('<%=returnName()%>');
// Set initial focus to message input box.
$('#message').focus();
// Start the connection.
$.connection.hub.start().done(function () {
$('#sendmessage').click(function () {
// Call the Send method on the hub.
chat.server.send($('#displayname').val(), $('#message').val());
// Clear text box and reset focus for next comment.
$('#message').val('').focus();
});
});
});
</script>
Code Behind功能(当我调试msg
和chatMessage.Value
都没有值时):
protected String returnLiClass(String msg)
{
String test = chatMessage.Value;
return "redChat";
}
我不确定我做错了什么... 希望你能帮忙,谢谢你!
答案 0 :(得分:0)
尝试使用jquery val()函数。
我也觉得控件没有被找到,这就是为什么它没有设置它。
试试这个。
$("#<%=chatMessage.ClientID%>").val('value from javascript');