我有一些正在運行的JavaScript,我想將其轉換爲純jQuery。請幫幫我。這裏是我的整頁代碼:如何將JavaScript轉換爲純jQuery
<html>
<head>
<title>Test</title>
<script type="text/javascript">
function Test1(){
w = window.open('test1.html', 'popup1', 'width=800,height=600');
setInterval("Test2()", 5000);
}
function Test2(){
if(w != null){
if(w.frames.length == 1){
return false;
}else{
window.open('test2.html', 'popup2', 'width=800,height=600');
}
}
}
</script>
</head>
<body>
<a href="#" onclick="Test1();">Test</a>
</body>
</html>
謝謝。
「JavaScript以純的JQuery」 意味着JavaScript是JQuery的一個超集,而不是相反。 – 2011-04-19 12:42:45
此代碼中沒有任何內容可以專門移植到jQuery。這完全沒有意義。 – 2011-04-19 12:43:09
更好的標題可能是'jQuery如何改進此代碼?' – 2011-04-19 12:43:55