我有一些使用 jquery 创建的 iframe,每个 iframe 都有一个选择按钮,但是当我单击该 iframe 中的按钮时,我不断获得第一个 iframe。
$("<iframe />" , {
src: strTest,
id: "myframe",
width: '100%'
}).appendTo('.content');
$("<button/>", {
id: "button"
})
.text("Select Patient")
.click(function () {
$("#myframe").attr("Height", "125%").addClass("selectedIframe");
var isVisible = $("selectedIframe").is(":visible");
}).appendTo('.content');
$(".selectedIframe").parent().show();
有人可以帮帮我吗?谢谢