|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
在实现ERP等高端的ASP应用时,用户需要提供核心的经营资料,需要ASP商有很高的信用度。楼上说交互性不好,太牵强了吧。在微软提供的一套框架中,利用asp做网站,开发效率高,使用人数少,减少不必要的开销。交互性是互动方式,是有开发人员决定的。xieyj(原作)
<Html>
<Head>
<SCRIPTLANGUAGE="JavaScript">
<!--
//界说select原值
varoldValue,oldText;
//select下拉框的onkeydown事务,修正下拉框的值
functioncatch_keydown(sel)
{
switch(event.keyCode)
{
case13://回车键
event.returnValue=false;
break;
case27://Esc键
sel.options[sel.selectedIndex].text=oldText;
sel.options[sel.selectedIndex].value=oldValue;
event.returnValue=false;
break;
case8://空格健
vars=sel.options[sel.selectedIndex].text;
s=s.substr(0,s.length-1);
if(sel.options[sel.selectedIndex].value==sel.options[sel.selectedIndex].text)
{
sel.options[sel.selectedIndex].value=s;
sel.options[sel.selectedIndex].text=s;
}
event.returnValue=false;
break;
}
if(!event.returnValue&&sel.onchange)
sel.onchange(sel)
}
//select下拉框的onkeypress事务,修正下拉框的值
functioncatch_press(sel){
if(sel.selectedIndex>=0){
vars=sel.options[sel.selectedIndex].text+String.fromCharCode(event.keyCode);
if(sel.options[sel.selectedIndex].value==sel.options[sel.selectedIndex].text)
{
sel.options[sel.selectedIndex].value=s;
sel.options[sel.selectedIndex].text=s;
}
event.returnValue=false;
if(!event.returnValue&&sel.onchange)
sel.onchange(sel)
}
}
//select下拉框的onfocus事务,保留下拉框本来的值
functioncatch_focus(sel){
oldText=sel.options[sel.selectedIndex].value;
oldValue=sel.options[sel.selectedIndex].value;
}
//恢复select下拉列表以后选中的值
functionLoadSelect(obj,value)
{
for(vari=0;i<obj.options.length;i++)
if(obj.options[i].value==value)
{
obj.selectedIndex=i;
break;
}
}
//select选择框鼠标上移时提醒选择的内容
functionselMouseOver(obj)
{
with(document.all.div_hint)
{
innerText=obj.options[obj.selectedIndex].text;
if(innerText.length>0)
{
innerText=""+innerText+"";
style.display="block";
style.left=event.clientX+16;
style.top=event.clientY;
}
}
}
//select选择框鼠标移开时消散
functionselMouseOut(obj)
{
with(document.all.div_hint)
{
style.display="none"
}
}
//-->
</SCRIPT>
</Head>
<Body>
<!--挪用-->
<selectstyle=width:130px;z-index:-1name=tmpSelonmou搜索引擎优化ver=selMouseOver(this)onmou搜索引擎优化ut=selMouseOut(this)onkeydown=catch_keydown(this)onkeypress=catch_press(this)onfocus=catch_focus(this)>
<optionvalue=></option>
</select>
<!--提醒块-->
<divid=div_hintstyle="font-size:12px;color:red;display:none;position:absolute;z-index:2;top:200;background-color:#F7F7F7;layer-background-color:#0099FF;border:1px#9c9c9csolid;filter:Alpha(style=0,opacity=80,finishOpacity=100);"></div>
</Body>
</Html>
国内有些大的CRM厂商的ASP就写得不错.无论是概念还是它里面用JAVASCRIPT的能力.并不是说现在的程序员用了ASP.NET来写程序就可以说自己高档了 |
|