<html>
<head>
<script type="text/javascript">
var oauth = chrome.extension.getBackgroundPage().oauth;
</script>
<style type="text/css">
#note
{
display:none;
}
</style>
<script src="Task.js" type="text/javascript"></script>
<script src="Taskhandle.js" type="text/javascript"></script>
<script src="jquery.js" type="text/javascript"></script>
<title>TaskMan</title>
</head>
<body>
<input type="text" id="title"><input type="text" id="note">
<a href="" id="make" onclick="maketask()">+</a> <a href="" id="anote">N</a>
<script type="text/javascript">
window.onload=function(){
$('#anote').click(function() {
$('#note').show();
});
}
</script>
</body>
</html>
當我在chrome中運行此代碼時,輸入會閃爍。我需要修復。jquery show()閃爍
我想你得給我們的代碼task.js – Hogan 2011-05-26 18:01:41