Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个HTML表单,它是一个弹出窗口。当用户单击按钮时,表单将出现在同一页面上。
但是此代码在 Wordpress 帖子中不起作用:
<a href="javascript: void(0)" onClick="OpenPopup();"> <img border="0" src="submit.jpg"> </a>
我该怎么办?
Iexplore 不支持 onClick,也许你可以通过创建一个jQuery函数来做到这一点:
先加ID:
<img id='image_id' border="0" src="submit.jpg"/>
然后,jQuery函数:
<script> $(document).ready(function(){ $('#image_id').click(function(){ OpenPopup(); }); }); </script>