嗨,我想在 javascript 中触发空格键而不在文本框中按空格键,我尝试了这段代码,请帮我解决这个问题
<script language="javascript" type="text/javascript">
jQuery(document).ready(function () {
var getOldValue = jQuery("#<%=txtCompany.ClientID%>");
var e = jQuery.Event("keydown");
e.which = 32; //key code
jQuery("#<%=txtCompany.ClientID%>").trigger(e);
});
</script>
和 aspx 页面是
<asp:TextBox ID="txtCompany"></asp:TextBox>