this代表input对象,就是本身,form属性返回包含本元素的表单对象
<form name="f">
<input value="1" name="input1" onClick="this.form.action='1.jsp'">
</form>
this指的是input1
this.form 相当于 input1.form
包含元素input1的表单对象是name为f 的表单
所以this.form.action => input1.form.action => f.action
以上纯属瞎掰