中的简单模式

发布于 2024-12-09 09:25:42 字数 1033 浏览 0 评论 0原文

我正在尝试从 :

<td><a href="games/BG-1001.php" class ="simple_modal" >EU-ch U12</a></td> 

http://chesstao.com/test-1 的底部 传递到 simplemodal 的链接.php 我有用于获取 URL 和加载 iframe 的代码(但已被注释掉)。

<script src="js/jquery.simplemodal-1.4.1-min.js"></script>
<script src="js/basic-min.js"></script>

<script>
// Display an external page using an iframe
//var src = "http://365.ericmmartin.com/";

$("a").attr("href")
$('.simple_modal').click(function() {
var hrefval= $(this).attr("href");

});


//$.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}); </script>

问题是我无法使用文字来设置 src: var src = "http://365.ericmmartin.com/"; //DW

因为表数据中的URL发生变化。

有人可以告诉我如何将注释代码与其他代码混合吗?我的评估正确吗?

I am trying pass links to simplemodal from :

<td><a href="games/BG-1001.php" class ="simple_modal" >EU-ch U12</a></td> 

and at the bottom of http://chesstao.com/test-1.php I have code for picking up the URL and for loading the iframe (but it is commented out).

<script src="js/jquery.simplemodal-1.4.1-min.js"></script>
<script src="js/basic-min.js"></script>

<script>
// Display an external page using an iframe
//var src = "http://365.ericmmartin.com/";

$("a").attr("href")
$('.simple_modal').click(function() {
var hrefval= $(this).attr("href");

});


//$.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}); </script>

The problem is that I can't use a literal to set src:
var src = "http://365.ericmmartin.com/"; //DW

because the URL in the table data changes.

Can somebody please tell me how to blend the commented code with the other code?. Am I correct in my assessment?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

爱给你人给你 2024-12-16 09:25:42

简单地从点击事件内部调用 modal() 方法怎么样?

$('.simple_modal').click(function(e) {
    // Get the href value of the <a> that was clicked
    var hrefval= $(this).attr("href");

    // Insert the href value into the parameter of the modal() method
    $.modal('<iframe src="' + hrefval + '" height="450" width="830" style="border:0">', {closeHTML:"", containerCss:{backgroundColor:"#fff", borderColor:"#fff", height:450, padding:0, width:830}, overlayClose:true});

    // preventDefault() stops the default behavior of the <a> that was clicked
    e.preventDefault();
});

这是一个简化的 JSFiddle 演示

How about simply calling the modal() method from inside your click event?

$('.simple_modal').click(function(e) {
    // Get the href value of the <a> that was clicked
    var hrefval= $(this).attr("href");

    // Insert the href value into the parameter of the modal() method
    $.modal('<iframe src="' + hrefval + '" height="450" width="830" style="border:0">', {closeHTML:"", containerCss:{backgroundColor:"#fff", borderColor:"#fff", height:450, padding:0, width:830}, overlayClose:true});

    // preventDefault() stops the default behavior of the <a> that was clicked
    e.preventDefault();
});

Here is a simplified JSFiddle demo

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