所以我试图获取一张图片来触发一个 jquery Show 功能。我失败了,我尝试了很多东西都无济于事。jquery 文档对我没有帮助:(
这是 jquery,直接来自 W3C。这就是我现在要做的所有事情。
$(document).ready(function(){
$("#regi").click(function(){
$("#reg").show();
});
});
这是我要显示的 HTML,它以可见性开始:隐藏;
<div id="reg">
<image src = "../media/RegPage.png">
<input type="text" name="usernameReg" value="email" STYLE="position: fixed; top: 175px; background-color: rgb(187,187,187); font-family: 'VT323', cursive;//#9cf;"/>
<input type="password" name="pwrdReg" value="pass" STYLE="position: fixed; top: 195px; background-color: rgb(187,187,187); font-family: 'VT323', cursive;"/>
<input type="password" name="VpwrdReg" value="pass" STYLE="position: fixed; top: 195px; background-color: rgb(187,187,187); font-family: 'VT323', cursive;"/>
</div>
这是图像。我尝试将它用作按钮并更改按钮的图像,但没有任何运气。请帮忙。想要这样点击它会触发 jquery show 事件。
<image id="show" src="../media/Register.png" ></image>
谢谢