我有一个 div,我想使用两个文本输入设置自定义尺寸。
<div id="theFrame"></div>
width: <input id="custWidth" type="text">
height: <input id="custHeight" type="text">
<br>
<button id="custSet">Set my width!</button>
我试过用变量设置高度和宽度,但我现在不知道该怎么做。
var frame = $('div#theFrame');
$("#custWidth")
.keyup(function () {
var custWidth = $(this).attr('value');
})
.keyup();
$("#custHeight")
.keyup(function () {
var custHeight = $(this).attr('value');
})
.keyup();
$('#custSet')
.click( function() {
frame.css({height: custHeight, width: custWidth});
});
谢谢。