提问人:zeifi 提问时间:11/6/2015 最后编辑:thanksdzeifi 更新时间:11/6/2015 访问量:414
在 MVC 中将值从 JavaScript 传递到部分视图
passing value from javascript to partial view in mvc
问:
下面给出的是我的脚本
var selectedImage;
function select(image) {
var images = document.querySelectorAll('img');
var index = 0, length = images.length;
for (; index < length; index++) {
images[index].classList.remove('selected');
}
selectedImage = image.id;
image.classList.add('selected');
var image = document.getElementById(selectedImage);
var audioId = image.getAttribute('data-audio')
var audioElement = document.getElementById(audioId);
}
现在我想将“audio 元素(包含从数据库获取的音频的 Url)”的值传递给在部分视图中定义的另一个函数。如何做到这一点?请帮忙。
答: 暂无答案
评论