如何获取表单对象?
我在这里使用 this.box 表示 sheet.box,但脚本会产生错误。如何在工作表属性中获取工作表对象?
<div class="box">
<form action=""></form>
</div>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript">
var sheet={
box: $('.box'),
form: this.box.find('form') // TypeError: this.box is undefined
}
</script>