我正在研究 jquery 和 javascript。我正在使用外部库来使功能正常工作。但该代码适用于 Firefox。但问题在于铬。它不像Mozilla那样工作。因为我对这个领域很陌生,所以我用谷歌搜索并没有找到解决方案。我需要为此安装任何 chrome 扩展文件吗?任何帮助,将不胜感激。这是我的代码:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>login testing</title>
<script type='text/javascript' src='http://code.jquery.com/jquery-1.9.1.js'></script>
<script type='text/javascript' src="http://cdnjs.cloudflare.com/ajax/libs/jquery-cookie/1.3.1/jquery.cookie.min.js"></script>
</head>
<body>
<script>
$(window).load(function(){
$(function()
{
$('#submit').click(function()
{
$('.container').show();
$('#login').hide();
$.cookie('shown', true);
});
if ($.cookie('shown')) {
$('#submit').click()
}
});
});
</script>
<div id="login">
<form id="loginform">
Uname:
<input type="text" id="uame" name="uname">
Pwd:
<input type="password" id="pwd" name="pwd">
<div class="Button1">
<button type="button" id="submit" value="Login" class="btn" >
Submit
</button>
<button type="reset" id="reset" value="Reset" class="btn">
Clear All
</button>
</div>
</form>
</div>
<div class="container" style="display:none">
Welcome to the naughtyprogrammer website
</div>
</body>
</html>