作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我现在得到了这个输入,它按预期工作。但是我想创建另一个具有相同弹出窗口的页面,但是这个页面应该自动运行而不是 onclick。关于如何让它工作的任何提示?
<input type="submit" id="checkin" method="post" action="checkin.php" href = "javascript:void(1)" onclick = "document.getElementById('light1').style.display='block';document.getElementById('fade').style.display='block'" value="Check in">
<div id="light1" class="white_content">
<form id="formen" name="myForm" action="checkin.php" method="POST">'
sAlot of content
</form>
</div>
最佳答案
1) 在脚本中编写弹窗显示逻辑并去掉input标签
<div id="light1" class="white_content">
<form id="formen" name="myForm" action="checkin.php" method="POST">'
sAlot of content
</form>
</div>
<script>
document.getElementById('light1').style.display='block';
document.getElementById('fade').style.display='block'
</script>
2)或者你也可以使用jquery在输入时触发点击事件
<input type="submit" id="checkin" method="post" action="checkin.php" href = "javascript:void(1)" onclick = "document.getElementById('light1').style.display='block';document.getElementById('fade').style.display='block'" value="Check in">
<div id="light1" class="white_content">
<form id="formen" name="myForm" action="checkin.php" method="POST">'
sAlot of content
</form>
</div>
<script>
$('#checkin').trigger('click');
</script>
关于javascript - HTML/javascript 自动弹出而不是点击?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27921835/
我是一名优秀的程序员,十分优秀!