更改选择时使用 jquery load 加载另一个选择选项
这是我的 Javascript,位于 id 为“course_name”的选择框和 id 为“dates”的 div 下方,
<script>
$('#course_name').change(function() {
url = "date_range.php?courseID=".$('#course_name').val();
$("#dates").load(url)
});
</script>
当我通过浏览器调用 date_range.php?courseID=1 时,它显示日期,但上面的代码不是加载中。
Here is my Javascript which is below a select box with the id of "course_name" and a div with an id of "dates"
<script>
$('#course_name').change(function() {
url = "date_range.php?courseID=".$('#course_name').val();
$("#dates").load(url)
});
</script>
when i call date_range.php?courseID=1 through my browser it displays the dates but the code above is not loading.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
或者更好的是,
第二个总是返回一个数字,因此它要么是 0(零)或以上,如果 #course_name 值是非数字,它将返回零,否则返回数字...当您想要验证服务器上的值。
or better still,
the second one will always return a number so it's either 0 (zero) or above, if the #course_name value is a non numeric number it would return zero, otherwise returns the number... this is especially useful when you want to validate the value on the server.