我有以下JavaScript代碼,我喜歡將其轉換爲jQuery,但沒有運氣。將JavaScript轉換爲jQuery
var mySplitResult = xvotesString[htmlid].split('~');
target3 = document.getElementById ('xvote-' + htmlid);
target3.style.width = mySplitResult[0] + 'px';
if (target4 = document.getElementById ('mnma-' + htmlid));
target4.innerHTML = mySplitResult[1];;
if (target5 = document.getElementById ('mnmb-' + htmlid));
target5.innerHTML = mySplitResult[2];;
if (target6 = document.getElementById ('mnmc-' + htmlid));
target6.style.display='none';;
if (target6 = document.getElementById ('mnmd-' + htmlid));
target6.style.display='block';
target7 = document.getElementById ('xvotes-' + htmlid);
target7.className = 'star-rating-noh';
任何幫助,非常感謝。
我的第一個建議是將所有的你的'echo''d Javascript代碼服務器標籤之外,使其更易於閱讀。 – Aaron 2010-03-30 20:09:50
哎呀! ________ – 2010-03-30 20:10:01
如果你發佈你已經試過的東西會更好,所以我們可以告訴你什麼是錯的... – 2010-03-30 20:11:01