-1

間違った答えを見つけ、警告ボックスを使用して正しい答えを書く html フォームを使用して 1 つの試験を作成しようとしました。しかし、別のカスタマイズされたアラート ボックスを使用したいです。

送信ボタンをクリックすると、カスタマイズされたアラートボックスが開きます。

このアラート ボックスを使用するhttp://www.abeautifulsite.net/blog/2008/12/jquery-alert-dialogs/

ありがとうございました !!!ありがとうございました !!!


これがコードです。

<SCRIPT Language ="JavaScript">

function ValidateForm(){
result = new Array();
count = 0;

if (!document.forms[0].one[1].checked == true) {
result[count] = "Question 1.  Correct answer is " + document.forms[0].one[1].value + ".";
count++;
}

if (!document.forms[0].two[1].checked == true) {
result[count] = "Question 2. correct answer is" + document.forms[0].two[1].value + ".";
count++;
}

if (!document.forms[0].three[0].checked == true) {
result[count] = "Question 3. The correct answer is " + document.forms[0].three[0].value + ".";
count++;
}

if (!document.forms[0].four[2].checked == true) {
result[count] = "Question 4. The correct answer is " + document.forms[0].four[2].value + ".";
count++;
}

if (result.length > 0) {
var vString = "";
for (var i=0; i<result.length; i++) {
vString = vString + result[i] + "\n";
}

alert(result.length + " incorrect answer:\n" + vString);
return(false);
}

else {
alert("All of the questions were answered correctly so submit email notice.");
return(true);
}
}

</SCRIPT>

4

1 に答える 1

0

リンク先のサイトからダウンロードしたjqueryとアラートプラグイン(jsおよびcss)が含まれていると仮定します...

交換 alert('etc etc')

jAlert('your message here')

于 2012-11-08T20:50:31.400 に答える