我使用 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,我想让它成为活动的、可点击的等。
谢谢