我需要在asp.net应用程序的内容页面中添加java脚本标记。该脚本适用于html标签,但在内容中它不起作用的是代码。
maxsubseq list = maxsubseqRecurse 0 list
maxsubseqRecurse sofar restOfList =
if null restOfList
then sofar
else
| if newSofar < 0
| then maxsubseqRecurse 0 newRestOfList
| else maxsubseqRecurse sofar newRestOfList
where
newSofar = sofar + head restOfList
newRestOfList = tail restOfList
答案 0 :(得分:0)
我认为问题是webforms的命名容器
在运行时,Htmlwriter进行翻译
<input type="text" id="ctl00_datepicker" />
有了这种行为,jquery无法找到该元素,因为它正在检查完整的id字段
所以你添加了ClientIdMode =&#34;静态&#34;到
<asp:TextBox ID="datepicker" ClientIdMode="Static"
或者你用这样的东西调用元素
$(function () {
$("input[name*='datepicker']").datepicker();
});