選択ボックスを指すPHPページのJavaScriptにfunction
を書く際に問題が発生しています。声明は、選択ボックスにJavaScript関数の選択ボックスの値に文がある場合
if (!(document.getElementById("add_product").value)==="Choose here")
をポイントする場合、これはここでは、コードです:
var month = prompt("Is this the correct month for this course/product?", "<?php echo $EnrollmentMonth; ?>");
第二:
function promptEnrollmentMonth() {
if (!(document.getElementById("add_product").value)==="Choose here") {
var month = prompt("Is this the correct month for this course/product?", "<?php echo "$EnrollmentMonth"; ?>");
if (month !=null) {
}
}
}
<button type="submit"
onclick="promptEnrollmentMonth()">Update</button>
<div>Add course/product:<select name='add_product'>
<option selected>Choose here</option>
<option>Other options...</option>
</select></div>
であれば、 "ここを選択" と思われる、trueまたはfalseに変換します(のdocument.getElementById( "add_product")。値を!== "ここで選択してください") – Conceptz