这个是书的list: Corduroy Lost and Found Curious George Goes to a Costume Party Do Your ABC's Little Brown Bear Henry's Show and Tell The Little Engine That Could Goes on a Class Trip Mirette on the High Wire Raggedy Ann's Wishing Pebble Tops & Bottoms What Grandmas Can't Do Soccer Showdown Julius Baby of the World Little Quack's New Friend The Dinosaur Who Lived In My Backyard The Tale of Pip & Squeak Chester's Way Curious George And The Hot Air Balloon Ella Sarah Gets Dressed
我看了一下,好像amazon有的单本还卖十几块呢,应该是很不错的deal啊。 <script language="JavaScript"> var wikiContent = ''; var messageId = 15435733; var bracketMessage = "Books include:\nCorduroy Lost and Found\nCurious George Goes to a Costume Party\nDo Your ABC\'s Little Brown Bear\nHenry\'s Show and Tell\nThe Little Engine That Could Goes on a Class Trip\nMirette on the High Wire\nRaggedy Ann\'s Wishing Pebble\nTops & Bottoms\nWhat Grandmas Can\'t Do\nSoccer Showdown\nJulius Baby of the World\nLittle Quack\'s New Friend\nThe Dinosaur Who Lived In My Backyard\nThe Tale of Pip & Squeak\nChester\'s Way\nCurious George And The Hot Air Balloon\nElla Sarah Gets Dressed\nAmelia Bedelia, Bookworm\nThe Relatives Came\nFroggy Plays T-Ball\nA Chair For My Mother"; var defaultButtons = ' edithistory '; var saving = false; var wikiEditor = document.getElementById('wikiEditor');
function previewWiki() { // get the wiki text var textEditor = document.getElementById("editWiki"); if(textEditor) { var text = textEditor.value;
// generate the preview... $.post("/forums/query/quicksummary_preview.php", { text: text }, function (results) { // show the preview var preview = document.getElementById("wikiPreview"); var previewText = document.getElementById("wikiPreviewHtml"); if(preview && previewText) { previewText.innerHTML = results.html; $(preview).fadeIn("slow"); preview.style.display = ""; } }, "json"); } }
function editWiki() { ref = document.getElementById('wikiBody'); wikiEditor.style.display = 'block';
以下是引用xqhiris在12/3/2010 1:43:00 PM的发言: 这个网站可靠么? I am worrying about that. There are two pending charges (same amount) in my credit card, but I just ordered one and just click once for sure. Anyone has the same problem? If I am double charged by this website, I will let you guys know.
I am worrying about that. There are two pending charges (same amount) in my credit card, but I just ordered one and just click once for sure. Anyone has the same problem? If I am double charged by this website, I will let you guys know. SAME HERE.
Corduroy Lost and Found
Curious George Goes to a Costume Party
Do Your ABC's Little Brown Bear
Henry's Show and Tell
The Little Engine That Could Goes on a Class Trip
Mirette on the High Wire
Raggedy Ann's Wishing Pebble
Tops & Bottoms
What Grandmas Can't Do
Soccer Showdown
Julius Baby of the World
Little Quack's New Friend
The Dinosaur Who Lived In My Backyard
The Tale of Pip & Squeak
Chester's Way
Curious George And The Hot Air Balloon
Ella Sarah Gets Dressed
我看了一下,好像amazon有的单本还卖十几块呢,应该是很不错的deal啊。
<script language="JavaScript">
var wikiContent = '';
var messageId = 15435733;
var bracketMessage = "Books include:\nCorduroy Lost and Found\nCurious George Goes to a Costume Party\nDo Your ABC\'s Little Brown Bear\nHenry\'s Show and Tell\nThe Little Engine That Could Goes on a Class Trip\nMirette on the High Wire\nRaggedy Ann\'s Wishing Pebble\nTops & Bottoms\nWhat Grandmas Can\'t Do\nSoccer Showdown\nJulius Baby of the World\nLittle Quack\'s New Friend\nThe Dinosaur Who Lived In My Backyard\nThe Tale of Pip & Squeak\nChester\'s Way\nCurious George And The Hot Air Balloon\nElla Sarah Gets Dressed\nAmelia Bedelia, Bookworm\nThe Relatives Came\nFroggy Plays T-Ball\nA Chair For My Mother";
var defaultButtons = ' edit history ';
var saving = false;
var wikiEditor = document.getElementById('wikiEditor');
function previewWiki()
{
// get the wiki text
var textEditor = document.getElementById("editWiki");
if(textEditor)
{
var text = textEditor.value;
// generate the preview...
$.post("/forums/query/quicksummary_preview.php", { text: text }, function (results) {
// show the preview
var preview = document.getElementById("wikiPreview");
var previewText = document.getElementById("wikiPreviewHtml");
if(preview && previewText)
{
previewText.innerHTML = results.html;
$(preview).fadeIn("slow");
preview.style.display = "";
}
}, "json");
}
}
function editWiki()
{
ref = document.getElementById('wikiBody');
wikiEditor.style.display = 'block';
wikiContent = new String(ref.innerHTML);
wikiEditor.style.width = "650px";
wikiForm = ' ' + bracketMessage + '
';
wikiForm += ' ';
ref.innerHTML = wikiForm;
document.getElementById('wikiButtons').innerHTML = ' Preview Save Cancel ';
ScrollToElement(document.getElementById('t' + messageId));
}
function saveWiki()
{
if (saving)
{
displaySaveWarning();
return;
}
var body = document.getElementById('editWiki').value;
document.getElementById('editWiki').value = '';
document.getElementById('editWiki').style.backgroundColor = '#ECEFC0';
document.getElementById('editWiki').style.color = '#000';
document.getElementById('editWiki').style.fontWeight = 'bold';
document.getElementById('editWiki').style.border = 'solid 1px #000';
document.getElementById('editWiki').style.textAlign = 'center';
document.getElementById('editWiki').value = 'saving...';
saving = true;
dontautolinkkeywords = (document.getElementById('dontautolinkkeywords') && document.getElementById('dontautolinkkeywords').checked) ? 1 : 0;
$.post("/forums/query/quick_summary_text.php", { mid : messageId, text : escape(body), dontautolinkkeywords : dontautolinkkeywords }, saveWiki_Callback);
}
function saveWiki_Callback(json)
{
try
{
// turn response into json
eval('json = ' + json + ';');
if (json.error == '0')
{
ref = document.getElementById('wikiBody');
document.getElementById('wikiEditMessage').innerHTML = json.editText;
wikiEditor.style.display = 'none';
document.getElementById("wikiPreview").style.display = "none";
ref.innerHTML = unescape(json.msg);
resetButtons();
bracketMessage = json.bracketVersion;
}
else
{
alert(json.error);
cancelWiki();
}
if('achievements' in json)
{
showAchievements(json.split(','));
}
saving = false;
}
catch(e)
{
}
}
function cancelWiki()
{
if (saving)
{
displaySaveWarning();
return;
}
resetButtons();
document.getElementById('wikiBody').innerHTML = wikiContent;
wikiEditor.style.display = 'none';
document.getElementById("wikiPreview").style.display = "none";
}
function resetButtons()
{
document.getElementById('wikiButtons').innerHTML = defaultButtons;
}
function displaySaveWarning()
{
alert('Please wait until save has completed');
}
function ScrollToElement(theElement)
{
//var selectedPosX = 0;
var selectedPosY = 0;
while (theElement != null) {
//selectedPosX += theElement.offsetLeft;
selectedPosY += theElement.offsetTop;
theElement = theElement.offsetParent;
}
window.scrollTo(0, selectedPosY);
}
</script>
[此贴子已经被作者于2010/12/2 16:51:50编辑过]
大家跳完收到confirmation letter了没,偶木有收到
mm幸亏你问了一下,我去查了一下信箱,在垃圾桶里,看了一下邮件,杯具了,订了两套,不过就正好借此打了个电话给他们,应该是个正规网站,听上去电话像那么回事,他说他们会给我cancel一套,好像网上不能直接cancel。
mm幸亏你问了一下,我去查了一下信箱,在垃圾桶里,看了一下邮件,杯具了,订了两套,不过就正好借此打了个电话给他们,应该是个正规网站,听上去电话像那么回事,他说他们会给我cancel一套,好像网上不能直接cancel。 为毛我的垃圾筒里也没有confirmation email啊
这个网站可靠么?
I am worrying about that. There are two pending charges (same amount) in my credit card, but I just ordered one and just click once for sure. Anyone has the same problem? If I am double charged by this website, I will let you guys know.
I am worrying about that. There are two pending charges (same amount) in my credit card, but I just ordered one and just click once for sure. Anyone has the same problem? If I am double charged by this website, I will let you guys know.
SAME HERE.