我在我的jsp页面上的表单中使用jqx下拉按钮。
当我将它们设置为以下
<form name="myForm">
<input type="button" value="one" onclick="validate(this.form);">
<div style="float: left;" id="dropDownButton">
<div style="border: none; display: none;" id='jqxTree'>
<ul>
<li>
<input type="button" value="two" onclick="validate(this.form);">
</li>
<li>
<input type="button" value="three" onclick="validate(this.form);">
</li>
</ul>
</div>
</div>
<input type="button" value="four" onclick="validate(this.form);">
</form>
以及以下获得我想要的东西:
$("#dropDownButton").jqxDropDownButton({ width: 90, height: 22, theme: theme });
这样做它会以某种方式将 dropDownButton div 设置为表单之外,并且它显然会抛出错误,说 this.form 是未知的。
如何解决此问题,或者是否可以将外部元素分配回我的表单?