我想在 jquery 滑块的 mouseup 事件中引发服务器端事件。我怎样才能做到这一点?你能给我一个好的起点吗?
我想调用的服务器端代码是
Private Sub LoadBlock(ByVal AA As Integer)
'A lot of stuff here
End Sub
从 Jquery 滑块事件收集的值应作为上述过程中的参数传递
我当前的 JQuery 是
<script type="text/javascript">
$(document).ready(function () {
var Country = ['<% =String.Join("', '", arrayString)%>'];
$('#slider-range-max').slider({
max: '<%= arrayLength%>',
min: 0,
value: '<%= iValue%>',
slide: function (event, ui) {
var splitValues = Country[ui.value].split("~");
$('#lblGame').html(splitValues[0]);
$('#hpHome').html(splitValues[1]);
},
stop: function (event, ui) { }
});
});
</script>
最后这不是作业!!!