- 1、本文档共5页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
使用JS动态调用数据库的值在前台显示
使用 JS动态调用数据库的值在前台显示
使用 JS动态调用数据库的值在前台显示这几天在做一个网上考试系统,学生通过前台登录考试时需要动态从数据库中读取本科科目考试的时间,以此来限制学生考试的时间。? ? 通过查阅资料,可以实现JS来实现倒计时,但是只能静态绑定。如果用JS从数据库读取数据则很麻烦,具体的做法我没有查阅,有兴趣的朋友可以使用AJAX读取数据库中然后做倒计时。我还想到一个办法就是在页面加载的时候,将待考试的科目时间绑定到一个TextBox中,然后用getElementById读取出其value的值:var Time=document.getElementById(lbshowTime).value;window.alert(注意考试时间为:+ Time);aspx中aspextBox ID=lbshowTime runat=server ReadOnly=false? /aspextBox但是根本显示不出来数据,我想加载页面的时候是先执行JS,然后在执行Page_Load事件,所以getElementById读取出来的时间为空的;? ? 然而当我绑定完数据后,即在Page_Load先给TextBox绑定考试的时间,然后在前台页面添加一个Button ,触发JS中的事件,通过getElementById却能得到读取出来的数据;其代码如下:Js:head runat=server? ? title无标题页/title? link href=../../styles/admin_Default.css media=all rel=stylesheet type=text/css /? meta name=keywords content= /meta name=description content= /script? type=text/javascriptfunction a(){? var getTime=document.getElementById(lbshowTime);? window.alert(注意考试时间为:+Time);}? /script/head前台页面:selectPaper.aspxbody style=position: absolute? ? form id=form1 runat=server ? ? div? table id=AddTable runat=server border=1 style=border-left-color: #ffffcc;? ? ? ? ? ? left: 221px; border-bottom-color: #ffffcc; width: 288px; border-top-style: solid;? ? ? ? ? ? border-top-color: #ffffcc; border-right-style: solid; border-left-style: solid;? ? ? ? ? ? position: relative; top: 66px; height: 48px; border-right-color: #ffffcc; border-bottom-style: solid? ? ? ? ? ? tr? ? ? ? ? ? ? ? td align=center colspan=2 rowspan=1 valign=top style=height: 50px? ? ? ? ? ? ? ? ? ? div class=mframe style=height: 24px? ? ? ? ? ? ? ? ? ? /div? ? ? ? ? ? ? ? ? ? 请选择要考试的科目:aspropDownList ID=ddSelectCourse runat=server AutoPostBack=True OnSelectedIndexChanged=ddSelectCourse_SelectedIndexChanged? ? ? ? ? ? ? ? ? aspistItem Selected=true Text=-选择- /aspistItem? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? /aspropDownList/td? ? ? ? ? ? /tr? ? ? ? ? ? tr? ? ? ? ? ? ? ? td align=right style=width: 90px; height: 23px? ? ? ? ? ? ? ? ? ? 时间:/td? ? ? ? ? ? ? ? td style=wid
文档评论(0)