if (day = day select) 在 jQuery 中
$('<option></option>')
.attr('label', day)
.attr('value', day)
if(myDate.getDate() == day)
{
.attr('selected','selected')
}
.html(day)
.appendTo(daySelector);
我想做的是运行一个 if 语句,如果它是 true 则选择这一天。
$('<option></option>')
.attr('label', day)
.attr('value', day)
if(myDate.getDate() == day)
{
.attr('selected','selected')
}
.html(day)
.appendTo(daySelector);
What I want to do is run an if statement and if it is true make that day selected.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以使用对象来完成此操作:
以下是该样式的示例: http://jsfiddle.net/9hVeq/< /a>
You can use an object to accomplish this:
Here is an example of that style: http://jsfiddle.net/9hVeq/
为什么不先把它放在 var 中呢?或者我错过了什么?
Why not just put it in a var first ? Or am i missing something ?
attr
可以将函数作为第二个参数来确定值应该是什么是。attr
can take a function as a second parameter to determine what the value should be.应该够了。或者,您可以在保存选项的 select 元素上设置值:
Should be enough. Alternatively you could set the value on the select element that holds the options: