ยินดีต้อนรับคุณ, บุคคลทั่วไป กรุณา เข้าสู่ระบบ หรือ ลงทะเบียน

เข้าสู่ระบบด้วยชื่อผู้ใช้ รหัสผ่าน และระยะเวลาในเซสชั่น

  แสดงกระทู้
หน้า: [1] 2 3 ... 68
1  ความรู้ทั่วไป / Internet Marketing / Re: คนทำ Affiliate บ้านเราหายไปไหนหมดครับ เมื่อ: 23 กรกฎาคม 2019, 19:50:41
วูบวาบ แต่ไม่ยั่งยืน มั้งครับ  Cry
2  ความรู้ทั่วไป / General (ถามคุยวิชาการ IM) / Re: ต้นเเต่ต้นเดือนมานี้...ยอดขายพุ่งกระฉูด ทั้งที่ไม่ได้ทำ SEO เมื่อ: 10 กรกฎาคม 2019, 19:31:23
กำลังจะลอง อันดับ facebook อยู่พอดี ขอบคุณครับ  wanwan017
3  ความรู้ทั่วไป / E-commerce / Re: 5 ไอเดีย ต่อยอดความคิด ในการค้นหาสินค้าดีๆมา "ขาย" เมื่อ: 24 กุมภาพันธ์ 2017, 13:49:24
ขอบคุณครับ  wanwan017
4  ความรู้ทั่วไป / Search Engine Optimization / Re: ช่วงนี้สังเกตุไหม ? ทำไมอันดับ SEO บน Google ถึงเปลี่ยนแปลง เมื่อ: 04 กันยายน 2016, 16:15:11
ขอบคุณครับ  wanwan017
5  ความรู้ทั่วไป / Search Engine Optimization / Re: ►►► วิธีการโปรโมท เพื่อดึง Traffic ◄◄◄ เมื่อ: 02 กันยายน 2016, 17:24:46
ขอบคุณณครับ  wanwan017
6  พัฒนาเว็บไซต์ / Programming / ช่วยหน่อยครับ! อยากให้แบบทดสอบ javascript มีเฉลย หลังตอบผิด เมื่อ: 20 กรกฎาคม 2016, 20:02:09
ช่วยหน่อยครับ! อยากให้แบบทดสอบ javascript มีเฉลย ข้อที่ถูกต้อง หลังตอบผิด น่ะครับ หรือมีตัวไหนแนะนำก็ได้ครับ wanwan011 wanwan017

http://www.thaivietnam.com/java/test2.html

อ้างถึง

<html xmlns="http://www.w3.org/1999/xhtml ">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<script type="text/javascript">


var useranswers = new Array();
var answered = 0;

function renderQuiz() {
  for(i=0;i<questions.length;i  ) {
    document.writeln('<p class="question">'   questions   ' <span id="result_'   i   '"><img src="formblank.gif" style="border:0" alt="" /></span></p>');
    for(j=0;j<choices.length;j  ) {
      document.writeln('<input type="radio" name="answer_'   i   '" value="'   choices[j]   '" id="answer_'   i   '_'   j   '" class="question_'   i   '" onclick="submitAnswer('   i   ', this, 'question_'   i   '', 'label_'   i   '_'   j   '')" /><label id="label_'   i   '_'   j   '" for="answer_'   i   '_'   j   '"> '   choices[j]   '</label><br />');
    }
  }
  document.writeln('<p><input type="submit" value="Show Score" onclick="showScore()" /> <input type="submit" value="Reset Quiz" onclick="resetQuiz(true)" /></p><p style="display:none"><img src="formcorrect.gif" style="border:0" alt="Correct!" /><img src="formincorrect.gif" style="border:0" alt="Incorrect!" /></p>');
}
function resetQuiz(showConfirm) {
  if(showConfirm)
    if(!confirm("Are you sure you want to reset your answers and start from the beginning?"))
      return false;
  document.location = document.location;
}
function submitAnswer(questionId, obj, classId, labelId) {
  useranswers[questionId] = obj.value;
  document.getElementById(labelId).style.fontWeight = "bold";
  disableQuestion(classId);
  showResult(questionId);
  answered  ;
}
function showResult(questionId) {
  if(answers[questionId] == useranswers[questionId]) {
    document.getElementById('result_'   questionId).innerHTML = '<img src="formcorrect.gif" style="border:0" alt="Correct!" />';
  } else {
    document.getElementById('result_'   questionId).innerHTML = '<img src="formincorrect.gif" style="border:0" alt="Incorrect!" />';
  }
}
function showScore() {
  if(answered != answers.length) {
    alert("You have not answered all of the questions yet!");
    return false;
  }
  questionCount = answers.length;
  correct = 0;
  incorrect = 0;
  for(i=0;i<questionCount;i  ) {
    if(useranswers == answers)
      correct  ;
    else
      incorrect  ;
  }
  pc = Math.round((correct / questionCount) * 100);
  alertMsg = "You scored "   correct   " out of "   questionCount   "

";
  alertMsg  = "You correctly answered "   pc   "% of the questions!

";
  if(pc == 100)
    alertMsg  = response[0];
  else if(pc >= 90)
    alertMsg  = response[1];
  else if(pc >= 70)
    alertMsg  = response[2];
  else if(pc > 50)
    alertMsg  = response[3];
  else if(pc >= 40)
    alertMsg  = response[4];
  else if(pc >= 20)
    alertMsg  = response[5];
  else if(pc >= 10)
    alertMsg  = response[6];
  else
    alertMsg  = response[7];
  if(pc < 100) {
    if(confirm(alertMsg))
      resetQuiz(false);
    else
      return false;
  } else {
    alert(alertMsg);
  }
}
function disableQuestion(classId) {
  var alltags=document.all? document.all : document.getElementsByTagName("*")
  for (i=0; i<alltags.length; i  ) {
    if (alltags.className == classId) {
      alltags.disabled = true;
    }
  }
}
</script>


<!-- ด้านล่างก็ให้ใส่ พวกโจทย์   ตัวเลือก   เฉลย ครับ -->
<script type="text/javascript">

/* This script and many more are available free online at
The JavaScript Source :: http://javascript.internet.com
Created by: James Crooke :: http://www.cj-design.com */

var questions = new Array();
var choices = new Array();
var answers = new Array();
var response = new Array();

// To add more questions, just follow the format below.

questions[0] = "1) JavaScript is ...";
choices[0] = new Array();
choices[0][0] = "the same as Java";
choices[0][1] = "kind of like Java";
choices[0][2] = "different than Java";
choices[0][3] = "ther written part of Java";
answers[0] = choices[0][2];


questions[1] = "2) JavaScript is ...";
choices[1] = new Array();
choices[1][0] = "subjective";
choices[1][1] = "objective";
choices[1][2] = "evil";
choices[1][3] = "object based";
answers[1] = choices[1][3];

questions[2] = "3) To comment out a line in JavaScript ...";
choices[2] = new Array();
choices[2][0] = "Precede it with two forward slashes, i.e. '//'";
choices[2][1] = "Precede it with an asterisk and a forward slash, i.e. '*/'";
choices[2][2] = "Precede it with an asterisk, i.e. '*'";
choices[2][3] = "Precede it with a forward slash and an asterisk, i.e. '/*'";
answers[2] = choices[2][0];

questions[3] = "4) JavaScript can only run on Windows";
choices[3] = new Array();
choices[3][0] = "True";
choices[3][1] = "False";
answers[3] = choices[3][1];

questions[4] = "5) Semicolons are optional at the end of a JavaScript statement.";
choices[4] = new Array();
choices[4][0] = "True";
choices[4][1] = "False";
answers[4] = choices[4][0];

questions[5] = "6) The four basic data types are:";
choices[5] = new Array();
choices[5][0] = "strings, numbers, BooBoos, and nulls";
choices[5][1] = "strings, text, Booleans, and nulls";
choices[5][2] = "strings, numbers, Booleans, and nulls";
choices[5][3] = "strings, numbers, Booleans, and zeros";
answers[5] = choices[5][2];

// response for getting 100%
response[0] = "Excellent, top marks!";
// response for getting 90% or more
response[1] = "Excellent, try again to get 100%!"
// response for getting 70% or more
response[2] = "Well done, that is a good score, can you do better?";
// response for getting over 50%
response[3] = "Nice one, you got more than half of the questions right, can you do better?";
// response for getting 40% or more
response[4] = "You got some questions right, you can do better!";
// response for getting 20% or more
response[5] = "You didn't do too well, why not try again!?";
// response for getting 10% or more
response[6] = "That was pretty poor!  Try again to improve!";
// response for getting 9% or less
response[7] = "Oh dear, I think you need to go back to school (or try again)!";

</script>
<body>
<script type="text/javascript">
<!--
  renderQuiz();
//-->
</script>
</body>
</html>
7  ความรู้ทั่วไป / General (ถามคุยวิชาการ IM) / Re: ผมมีทุกอย่างพร้อม แต่ไม่รู้จะขายอะไรดี เมื่อ: 22 มิถุนายน 2016, 13:48:47
เข้ามาส่องด้วย  wanwan021
8  ความรู้ทั่วไป / General (ถามคุยวิชาการ IM) / Re: 10 อันดับเว็บไซต์ภาษาลาว ที่คนลาวเข้าชมมากที่สุด เมื่อ: 18 มิถุนายน 2016, 18:25:10
ขอบคุณครับ  wanwan017
9  ความรู้ทั่วไป / General (ถามคุยวิชาการ IM) / Re: Single Gateway คืนชีพ ?? ให้มีวิธีระงับข้อมูลที่เข้ารหัส SSL เมื่อ: 02 มิถุนายน 2016, 15:29:52
 Tongue Lips Sealed
10  ความรู้ทั่วไป / Amazon / Re: เมซอน กลับมาติดลมบน อีกแล้วจร้า!! เมื่อ: 19 เมษายน 2016, 10:50:33
คิดถึง Amazon เหมือนกัน ไม่ได้ทำมา...น่าจะ 4 ปี แล้ว  wanwan003
11  ความรู้ทั่วไป / ระวังภัยทางเน็ต (Beware of Scams and Frauds) / Re: เตือนภัย รีวิวรายได้บนเน็ต ระวังโดนแฮคเกอร์ขโมยรหัส paypal เมื่อ: 18 เมษายน 2016, 19:17:13
ขอบคุณครับ  wanwan017
12  ความรู้ทั่วไป / Search Engine Optimization / Re: มีอะไรเด็ดๆๆมาให้ลองครับ !!! เมื่อ: 28 มกราคม 2016, 12:12:21
ขอบคุณครับ  wanwan017
13  อื่นๆ / Cafe / Re: หางานลำบาก มาสกรีนเสื้อขายกันเถอะ เมื่อ: 27 มกราคม 2016, 14:25:41
ขอบคุณครับ  wanwan003
14  Host and Domain / Promotion & Coupon / Re: ## มีที่จดโดเมนถูกๆมาฝากครับ เมื่อ: 27 มกราคม 2016, 14:24:07
ขอบคุณครับ  wanwan017
15  ความรู้ทั่วไป / General (ถามคุยวิชาการ IM) / Re: สอน wordpress อย่างละเอียดเลยค่ะ พอดีไปเจอมาค่ะ เมื่อ: 12 มกราคม 2016, 16:42:31
ขอบคุณครับ  wanwan017
16  ความรู้ทั่วไป / General (ถามคุยวิชาการ IM) / Re: TOT เข้าเฟสไม่ได้ใครเป็นบ้างครับ 29 กันยา 58 เมื่อ: 29 กันยายน 2015, 15:31:12
ทดลองเข้า asp.net , amazon.com ก็ปรกตินะ  wanwan011
17  ความรู้ทั่วไป / General (ถามคุยวิชาการ IM) / Re: TOT เข้าเฟสไม่ได้ใครเป็นบ้างครับ 29 กันยา 58 เมื่อ: 29 กันยายน 2015, 15:12:42
ทำไมเป็นเฉพาะ facebook
youtube ปรกติ  wanwan011
เหมือนผลิตภัณฑ์ google ทั้งหมดจะมีโหนดอยู่ในไทยครับ
wanwan017
18  ความรู้ทั่วไป / General (ถามคุยวิชาการ IM) / Re: TOT เข้าเฟสไม่ได้ใครเป็นบ้างครับ 29 กันยา 58 เมื่อ: 29 กันยายน 2015, 14:56:48
ทำไมเป็นเฉพาะ facebook
youtube ปรกติ  wanwan011
19  ความรู้ทั่วไป / General (ถามคุยวิชาการ IM) / Re: TOT เข้าเฟสไม่ได้ใครเป็นบ้างครับ 29 กันยา 58 เมื่อ: 29 กันยายน 2015, 13:13:48
เป็นเหมือนกันครับ เข้าได้ ก็ช้า มากๆ ครับ  wanwan044
20  ความรู้ทั่วไป / General (ถามคุยวิชาการ IM) / Re: ปิดการเล่นวีดีโออัตโนมัติบน app facebook ยังไงครับ น่ากลัวมาก!!! เมื่อ: 15 กันยายน 2015, 14:26:34
แก้ได้แล้ว ขอบคุณครับ  wanwan017
หน้า: [1] 2 3 ... 68