jquery 变量容器
我正在寻找一种在 jquery 中使用变量的方法。
我正在从超链接获取 src 属性。
但我随后想将其附加到 jw 播放器的超级链接中。
'640','467','9');
so.addParam('allowfullscreen','true');
so.addParam('allowscriptaccess','always');
so.addParam('wmode','opaque');
so.addVariable('file','I need the href attribute to go in here');
so.write('mediaspace');
我的问题是他们没有将其附加到的 div,而且我不能在这个空间中放置任何内容来附加它,因为它只需要是超链接。
<a class="video_click" href="video/link.flv" rel="prettyPhoto" title="Flash 10 demo"><?php echo "$fname"; ?></a>
<script type="text/javascript">
$('a.video_click').click(function(event){
event.preventDefault();
var test = $(this).attr('href');
alert(test);
});
所以我抓住了 href 他们是他们附加说 {$name}
或其他什么的一种方式?
I am look for a way to use a variable with jquery.
I am grabbing the src attribbute from a hyperlink.
But i then want to append it to the hyerlink for jw player.
'640','467','9');
so.addParam('allowfullscreen','true');
so.addParam('allowscriptaccess','always');
so.addParam('wmode','opaque');
so.addVariable('file','I need the href attribute to go in here');
so.write('mediaspace');
My problem is their is no div the append it to and i cant put anything in this space to apend it to because it just needs to be the hyperlink.
<a class="video_click" href="video/link.flv" rel="prettyPhoto" title="Flash 10 demo"><?php echo "$fname"; ?></a>
<script type="text/javascript">
$('a.video_click').click(function(event){
event.preventDefault();
var test = $(this).attr('href');
alert(test);
});
so i grab the href their is their a way to append to say {$name}
or something?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
jQuery.data() 是您要找的吗?
http://api.jquery.com/jQuery.data/
它允许您存储任意数据与元素并稍后访问它。
Is jQuery.data() what you're looking for?
http://api.jquery.com/jQuery.data/
It allows you to store arbitrary data with an element and access it later.