如何将动态变量添加到 jQuery 函数中
我正在尝试修改一个 Twitter 小部件,根据下拉菜单,用户可以在不同的搜索词之间切换。
我不想在当前代码中定义关键字,而是想创建一个关键字下拉列表,以便我的用户可以选择一个关键字并显示相关推文。我在头部的 Jquery 是:
$(document).ready(function () {
$('#tweets ul').twitterfeed('#keyword', {
type: "query",
count: 5
})
});
我的选择框代码是:
<strong>Select your keyword</strong>:<select id="keyword">
<option value="ABC">ABC</option>
<option value="XYZ" selected="selected">XYZ</option>
</select>
有关如何解决此问题的任何帮助吗?
谢谢
I'm trying to modify a twitter widget where based on the dropdown, users can switch between the different search terms.
Instead of the present code where I have to define a keyword, I want to create a dropdown list of keywords so my users can select one and the relative tweets are shown. The Jquery I have in the head section is:
$(document).ready(function () {
$('#tweets ul').twitterfeed('#keyword', {
type: "query",
count: 5
})
});
And my select box code is:
<strong>Select your keyword</strong>:<select id="keyword">
<option value="ABC">ABC</option>
<option value="XYZ" selected="selected">XYZ</option>
</select>
Any help on how to fix this?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)