通过js脚本来传递参数,然后改变DIV图层的属性值,可根据自己的需求来修改参数或图层属性。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="keywords" content="武鸣人网站,武鸣信息网,武鸣本地网,武鸣信息资源平台,减肥,健身,励志,励志语录,js特效,网页特效,www.wuming.ren"> <meta name="description" content="欢迎来到武鸣人信息资源平台,各种信息免费发布,资源共享合作共赢,分享互联网流行的励志语录经典短句,减肥健身健康小常识及打卡记录,收集各种js特效代码。"> <title>js函数传递参数改变Div属性值_武鸣人</title> <style> body,p{margin:0;padding:0;} body{color:#333;font:12px/1.5 Tahoma;padding-top:10px;} #wuming_ren{width:300px;margin:0 auto;} p{margin-bottom:10px;} button{margin-right:5px;} label{width:5em;display:inline-block;text-align:right;} input{padding:3px;font-family:inherit;border:1px solid #ccc;} #www_wuming_ren{color:#fff;width:180px;height:180px;background:#000;margin:0 auto;padding:10px;} </style> <script> var changeStyle = function (elem, name, value) { elem.style[name] = value } window.onload = function () { var oDiv = document.getElementById("www_wuming_ren"); var oBtn = document.getElementsByTagName("button"); var oInput = document.getElementsByTagName("input"); oBtn[0].onclick = function () { changeStyle(oDiv, oInput[0].value, oInput[1].value) }, oBtn[1].onclick = function () { oDiv.removeAttribute("style") } }//武鸣人网站https://www.wuming.ren 网站域名很好记住,wuming.ren(武鸣拼音.ren域名后缀) </script> </head> <body> <a href="https://www.wuming.ren">武鸣人</a>,各种信息资源免费发布,分享励志语录经典短句,减肥健身常识,各种js特效代码。网站很好记住,wuming.ren(武鸣拼音.ren域名后缀)<hr> <!--欢迎来到武鸣人信息资源平台,各种信息免费发布,资源共享合作共赢,分享互联网流行的励志语录经典短句,减肥健身健康小常识及打卡记录,收集各种js特效代码。--> <script type="text/javascript" src="https://www.wuming.ren/ad/tc.js"></script> <script type="text/javascript" src="https://www.wuming.ren/ad/a.js"></script> <div id="wuming_ren"> <p><label>属性名:</label><input type="text" value="background" /></p> <p><label>属性值:</label><input type="text" value="blue" /></p> <p><label></label><button>确定</button><button>重置</button></p> </div> <div id="www_wuming_ren">在上方输入框输入"属性名"及"属性值",点击确定按钮查看效果。</div> </body> </html>
本文来自武鸣人网站,转载请注明出处