jquery如何点击页面,使select的下拉框自动弹出?
我想点击页面空白处,select下拉框会自动弹出,怎么做呢 <select><option>sdf</option><option>sdf</option><option>sdf</option></select>
jquery中的submit方法怎么用?
submit()方法绑定在form表单元素上,当绑定的表单被提交时(通过点击按钮、按回车键等),会触发该方法。实例:
<form id="form1" autocomplete="off"> <input type="text" name="model.username"/> <input type="password" name="model.password"/> <input type="submit" value="登录" /> </form>
$('#form1').submit(function() { $.ajax({ url: '/index!login.do', data: $('#form1').serialize(), type: "POST", dataType: "json", cache: false, success: function(data) { if (data.login == true || data.login == "true") { // 登录成功 location.replace('/main/index.do'); } else { alert('登录失败!请检查用户名或密码'); } } });});
jquery怎么修改代码让鼠标点击空白处,弹出层不会关闭?
其实很简单的:在</html> 后面加上<script>document.onclick=function(){};</script> 就可以了 这个鼠标事件会覆盖原先的鼠标点击事件!