函数传参,改变Div任意属性的值 在上方输入框输入"属性名"及"属性值",点击确定按钮查看效果。
$(function(){
$("button:first").click(function(){
var styleName= $("#outer").find("input:first").val();
var styleVal = $("#outer").find("input:last").val();
$("#div1").css(styleName,styleVal);
})
$("button:last").click(function(){
$("#div1").removeAttr("style");
})
})
在上方输入框输入"属性名"及"属性值",点击确定按钮查看效果。