返回列表 發帖
我看了一下=>網頁設計‧愛上jQuery
的相關介紹決定買這本書了--有很大的參考價值

想請問這本書同一作者的另外一本書
jQuery UI & Plugins
是否值得去閱讀或是參考呢
它的詳細介紹網址如下

http://www.books.com.tw/exep/prod/booksfile.php?item=0010423797

奇妙的是裡面也有提到lightbox==或許之前跟您請教的靠右靠左問題說不定裡面會有提到???^^||
邁向神乎其技的境界^^

TOP

網頁設計~愛上JQUERY這本書我已經買了
真的覺得很是受用
目前看到某一個章節~jQuery的事件select範例功能
剛好發現只有FF跟Opera無法使用
我將程式碼PO出來看看
雖然這功能應該很少運用啦^^|||

test82.html
<script type="text/javascript" src="請換成jquery.js"></script>
<script type="text/javascript" src="myfirst82.js"></script>

<style>
.myselect
{
color: white;
background-color: red;
font: normal 90% "Arial"
}
</style>

<body>
name:<input type=text size=20>
</body>
myfirst82.js
$(document).ready(function(){

$(':input').select(function(){
$(this).addClass('myselect');
});

$(document).click(function(){
$(':input').removeClass('myselect');
});

});
[ 本帖最後由 bau720123 於 2009-5-11 17:51 編輯 ]
邁向神乎其技的境界^^

TOP

返回列表 回復 發帖