gpt4 book ai didi

jQuery 无法与 runat ="server"一起使用

转载 作者:行者123 更新时间:2023-12-03 22:47:15 26 4
gpt4 key购买 nike

我的下面的代码在 HTML 中使用时工作正常。我尝试将相同的代码放入表单中,但它停止工作。如何解决这个问题?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<script src="jquery-1.7.1.min.js" ></script>
<title>Chat scroll test</title>
<style type="text/css">
#chat
{
width: 200px;
height: 200px;
border: 1px solid black;
overflow-y: auto;
}
</style>
<script>
jQuery(document).ready(function ($) {
monitor = function () {
var $this = $(this),
wrap = $this.find('.wrapper'),
height = $this.height(),
maxScroll = wrap.height() - height,
top = $this.scrollTop();
if (maxScroll === top) {
$this.addClass('atBottom');
} else {
$this.removeClass('atBottom');
}
}
window.setInterval(function () {
monitor.call($('#chat').get(0));
}, 350);
$('#chat').bind('addMessage', function (e, message) {
var $this = $(this),
top = $this.scrollTop(),
scroll = $this.hasClass('atBottom');
$this.find('.wrapper').append(message);
if (scroll) {
var wrap = $this.find('.wrapper'),
height = $this.height(),
maxScroll = wrap.height() - height
$this.scrollTop(maxScroll);
}
})
$('button').click(function () {
$('#chat').trigger('addMessage', 'asdgagasdg<br/>');
});
});
</script>
</head>

<body>
<form id="form1" runat="server">
<div id="chat">
<div class="wrapper">
adsgasgda<br/>
adsgasg<br/>
asd<br/>
adsgasgda<br/>
adsgasg<br/>
adsgasgda<br/>
adsgasg<br/>
adsgasgda<br/>
adsgasg<br/>
adsgasgda<br/>
adsgasg<br/>
adsgasgda<br/>
adsgasg<br/>
adsgasgda<br/>
adsgasg<br/>
</div>
</div>
<button>Add a line</button>
</form>
</body>
</html>

当表单标签被删除时,它会再次开始工作。

最佳答案

对于 .NET 4.0,添加 ClientIDMode Static 标签,使其出现在客户端的方式与出现在服务器端的方式相同。

类似于

                  <form id="form1" runat="server" ClientIDMode="Static">

对于旧的 .net,每当您引用控件时,请在 jQuery/Javascript 代码中使用“<%= Control.ClientID %>”

类似

                 '<%= form1.ClientID %>'

关于jQuery 无法与 runat ="server"一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8563304/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com