删除 jQuery 小样板
这是我的代码:
$(document).ready(function() {
$('td').empty();
getWeather();
});
$('.data').change(function() {
$('td').empty();
getWeather();
});
我该如何优化它?
我正在考虑使用“OR”,但我无法将它放在任何地方。
提前致谢。
this is my code:
$(document).ready(function() {
$('td').empty();
getWeather();
});
$('.data').change(function() {
$('td').empty();
getWeather();
});
How can I optimize it?
I was thinking of using "OR", but I couldn't fit it anywhere.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
怎么样...
What about...