我正在尝试编写一个"Tweet this"按钮,在Twitter上打开一个带有预生成文本的新窗口.我现在得到的是Twitter上的一个窗口,其中包含我来自哪里的URL.我正在使用JQuery API来执行此操作.我项目的链接是http://codepen.io/haldav/pen/KVpojP.我的代码是:
$(document).ready(function() { random(); function random() { var quotes = ["You must be shapeless, formless, like water. When you pour water in a cup, it becomes the cup. When you pour water in a bottle, it becomes the bottle. When you pour water in a teapot, it becomes the teapot. Water can drip and it can crash. Become like water my friend.", "Defeat is a state of mind; no one is ever defeated until defeat has been accepted as a reality.", "The moment has no yesterday or tomorrow. It is not the result of thought and therefore has no time.", "Real living is living for others.", "Never waste energy on worries or negative thoughts, all problems are brought into existence -drop them.", "A goal is not always meant to be reached. It often serves simply as something to aim at.", "Those who are unaware they are walking in darkness will never seek the light.", "Because one does not want to be disturbed, to be made uncertain, he establishes a pattern of conduct, of thought, a pattern of relationship to man etc. Then he becomes a slave to the pattern and takes the pattern to be the real thing."]; randomQuote = quotes[Math.floor(Math.random() * quotes.length)]; quote = randomQuote.split("randomQuote"); $('.quote').text(quote[0]); } $(".button").on("click", function() { random(); }); });
我的HTML代码是:
The Wisdom of Bruce Lee
Although Bruce Lee died at a considerably young age, he was wise beyond his years. For my random quote machine, I chose to showcase some of his wisdom. For this exercise, I used a little JQuery, Bootstrap, CSS and HTML.
Copyright © David C. Hall 2015
我很难过.有什么建议?谢谢.编辑:我正在打开一个新窗口,但我需要它在文本框中显示随机引用.
1> haldav..:弄清楚了!我所要做的就是添加
$(this).attr("href", 'https://twitter.com/intent/tweet?text=' + randomQuote);到我的JS代码.
推荐阅读
如何解决《Android摄像头预览在方形屏幕上拉伸》经验,为你挑选了1个好方法。 ... [详细] 如何解决《python中all()的行为》经验,为你挑选了1个好方法。 ... [详细] 如何解决《从代码背后改变样式》经验,为你挑选了0个好方法。 ... [详细] 如何解决《DDD-仅在更改时保留聚合子项》经验,为你挑选了1个好方法。 ... [详细] 如何解决《如何读取文本文件键值并将值分配给字符串变量?》经验,为你挑选了1个好方法。 ... [详细] 如何解决《ng-blur不会在输入编号的firefox上触发事件》经验,为你挑选了1个好方法。 ... [详细] 如何解决《当我尝试使用Guice覆盖通用绑定时,为什么会出现错误?(TypeLiteral)》经验,为你挑选了1个好方法。 ... [详细] 如何解决《C#-System.FormatException类型的未处理异常-ListListtoListint》经验,为你挑选了0个好方法。 ... [详细] 如何解决《阅读SecurityTokenC#中的声明》经验,为你挑选了1个好方法。 ... [详细] 如何解决《无法存储作业,因为已存在具有此标识的作业》经验,为你挑选了2个好方法。 ... [详细] 如何解决《为什么这个正则表达式只在Python的行开头匹配?》经验,为你挑选了1个好方法。 ... [详细] 如何解决《为什么'typeof(string).FullName'给'System.String'而不是'string'?》经验,为你挑选了1个好方法。 ... [详细] 如何解决《引导程序中自适应行类中的基本居中元素》经验,为你挑选了0个好方法。 ... [详细] 如何解决《如何在节点js中转发http请求》经验,为你挑选了1个好方法。 ... [详细] 如何解决《UITableView线分隔符可用于iOS9中的备用单元格》经验,为你挑选了1个好方法。 ... [详细] 如何解决《使用Jackson自定义反序列化List》经验,为你挑选了1个好方法。 ... [详细] 如何解决《android:如何在折叠工具栏中添加带文本的按钮》经验,为你挑选了1个好方法。 ... [详细] 如何解决《使一个类不变》经验,为你挑选了2个好方法。 ... [详细] 吐了个 "CAO" !Tags | 热门标签RankList | 热门文章
- 1Express:单独的路由和控制器文件
- 2如何在Node Webkit中运行外部exe?
- 3为什么省略行app.use(express.static(__ dirname,'public'))会阻止我的html页面加载css文件?
- 4触发锚标记上的点击事件不起作用
- 5iOS Core Audio AUAudioUnit和AVAudioUnit有什么区别?
- 6泛型超类和超类类型的区别
- 7错误:'operator =='的模糊重载
- 8如何更改Visual Studio代码中的缩进?
- 9从字符串右侧删除一定数量的零
- 10使用已删除的复制构造函数和初始化列表重载调用类定义中的成员构造函数
- 11如何使用DNX和ASP.NET 5实现持续交付
- 12如何用里面的两个视图刷新SwipeRefreshLayout
- 13Laravel Eloquent:如何在Json响应中生成假列?
- 14ES6模块:重新导出为对象
- 15如何检查证书是否自签名?
- 16使用参考参数
- 17PyQt4:如何在发出信号之前暂停线程?
- 18Docker构建参数
- 19如何在我的Mac OSX上安装PHP扩展"pcntl"
- 20spring jdbctemplate get byte array
DevBox开发工具箱 | 专业的在线开发工具网站 京公网安备 11010802040832号 | 京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有