gpt4 book ai didi

javascript - 如何在路径中传递变量

转载 作者:行者123 更新时间:2023-11-30 13:06:48 25 4
gpt4 key购买 nike

我有这个脚本,我想播放名为“pr_id”的歌曲,我该如何在路径中写入它?谢谢!

     $(document).ready(function(){
var pr_id = document.getElementById('id')
$("#jquery_jplayer_1").jPlayer({
ready: function (){
$(this).jPlayer("setMedia", {
mp3:"/sounds/[pr_id].mp3"
});
},
swfPath: "js",
supplied: "mp3",
wmode: "window"
});
});

最佳答案

像这样:

$(document).ready( function() {
var pr_id = document.getElementById('id');

$("#jquery_jplayer_1").jPlayer({
ready: function() {
$(this).jPlayer("setMedia", {
mp3:"/sounds/" + pr_id + ".mp3"
});
},
swfPath: "js",
supplied: "mp3",
wmode: "window"
});
});

将字符串与变量连接起来 :),不幸的是,与某些其他语言不同,在字符串中包含变量并不那么容易,并且您必须通过连接将字符串稍微分开。

关于javascript - 如何在路径中传递变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15386526/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com