0

我使用 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 是一个有效的 url,我想让它成为活动的、可点击的等。

谢谢

4

2 回答 2

1
warningString = "<p style='margin-top: 15px;'>Please Verify the following URL is a valid Redirect URL.</p> <br/><a href='" + redirURL + "'>" + redirURL + "</a>";
于 2013-06-07T00:11:15.957 回答
0

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

于 2013-06-07T00:17:45.590 回答