jquery click 简单模态插件
我想使用简单的模态插件 http://www.ericmmartin 将变量传递到我的 javascript 中。 com/projects/simplemodal/,我视图中的 .click 函数(html)...这是我的 javascript:
$('#basic-modal .basic').click(function (e) {
var src = "http://365.ericmmartin.com/"
$.modal('<iframe src="' + src + '" height="450" width="830" style="border:0">', {
closeHTML:"",
containerCss:{
backgroundColor:"#fff",
borderColor:"#fff",
height:450,
padding:0,
width:830
},
overlayClose:true
});
return false;
});
这是我在 html 中尝试的内容:
<代码>%a.basic{:href => "#", :onclick => 'var src =“http://somesite.com/”'}
i would like to pass a variable into my javascript, using simple modal plugin, http://www.ericmmartin.com/projects/simplemodal/, .click function in my view (html) ... how this is my javascript:
$('#basic-modal .basic').click(function (e) {
var src = "http://365.ericmmartin.com/"
$.modal('<iframe src="' + src + '" height="450" width="830" style="border:0">', {
closeHTML:"",
containerCss:{
backgroundColor:"#fff",
borderColor:"#fff",
height:450,
padding:0,
width:830
},
overlayClose:true
});
return false;
});
and here is what i tried in my html:
%a.basic{:href => "#", :onclick => 'var src = "http://somesite.com/"'}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Jquery Dialog 已经为您构建了这个确切的功能。我强烈建议您尝试这种方法:
http://jqueryui.com/demos/dialog/
Jquery Dialog has this exact functionality already built for you. I would highly recommend you try out this approach:
http://jqueryui.com/demos/dialog/
使用 $(this).attr("friendid") 使其工作:
并在 HTML 中创建一个名为“friendid”的属性或任何您想要的属性。
Using $(this).attr("friendid") makes it work:
And in the HTML create an attribute called "friendid" or whatever you want.