-
window.open –打开窗口
1,window.open(CancelCause.aspx); 2,window.open(CancelCause.aspx,'child); 3,windo...
-
JS设置控件CSS:cssText
全部设置:? obj.style.cssText=border:1px solid #f00;font-size:14px;color:#f00;height:...
-
在文本框中输入时保证总是在最后一个字符后输入
那就要在keypress时保证文本框的光标在尾部,而文本框value赋值后其光标默认在最后,故可采用如下方式: input name=" type=text o...
-
js 文件在在本地调试时总会出现:“为帮助保护您的安全….”
js 只是会在本地出现,上传到服务器上就不会了。 activeX则无论是在本地还是服务器都会显示。 若想在本地调试时不出现,可设置:工具-Internet选项-...