jquery 变量容器

发布于 2024-10-13 04:59:17 字数 788 浏览 3 评论 0原文

我正在寻找一种在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

末骤雨初歇 2024-10-20 04:59:17

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文