jquery确认带有超链接的对话框

时间:2013-06-07 00:06:54

标签: jquery

我使用jquery创建了一个确认对话框,并希望在其中添加一个超链接。

        warningString = "<p style='margin-top: 15px;'>Please Verify the following URL is a valid Redirect URL.</p> \n" + redirURL;
        var confModalBtns = {
            'Submit': function() {
                $('#product-order-form').submit();
            },
            'Cancel': function() {
                $("#confirmUrlModal").dialog("close");
                toggleValidationLoader("hide");
            }
        };
        $("#confirmUrlModal").html(warningString);
        $("#confirmUrlModal").dialog("option", "buttons", confModalBtns);
        $("#confirmUrlModal").dialog("open"); 

基本上,变量redirURL是一个有效的网址,我想让它活跃,可点击等等。

谢谢

2 个答案:

答案 0 :(得分:1)

warningString = "<p style='margin-top: 15px;'>Please Verify the following URL is a valid Redirect URL.</p> <br/><a href='" + redirURL + "'>" + redirURL + "</a>";

答案 1 :(得分:0)

#confirmUrModal HTML元素将成为对话框的内容,并使用html()设置元素的innerHTML,所以....