使用下拉菜单改变网页背景图片
javascript
python
shell
powershell
python模块
php编程
php实例
asp.net
正则表达式
nginx
apache
linux
linux命令
centos
ubuntu
mysql
sql数据库
css教程
首页
脚本编程
网站编程
数据库
系统管理
服务器管理
网页教程
软件教程
电脑教程
手机教程
工具软件
电子书籍
php实例
shell脚本
jquery选择器
python模拟登录
linux命令
nginx
apache
当前位置:
首页
>
脚本特效
>
背景特效
> 正文
使用下拉菜单改变网页背景图片
发布时间:2019-10-12
编辑:
脚本学堂
下拉菜单改变网页背景图片的代码,选择下拉列表选项,改变网页的背景图案。
下拉菜单
改变背景图片
没有背景
雪花背景
纹理背景
方格背景
<script language=
javascript
> function changebg(obj){ selindex=obj.selectedIndex //取得选定选项的序号 bgsrc=obj.options[selindex].value //取得背景图片的路径 document.body.style.background=bgsrc //设定style.background属性,改变页面背景 } </script>