我想用非常简单的文字通知(浏览器上没有安装Flash)
但我不想使用Javascript或swfobject等...
我只想使用简单的HTML代码
我可以做类似这样的代码:
<html>
<head>
</head>
<body>
<object ...codes...>
<param ...codes...>
<param ...codes...>
<embed ...codes...>
</embed>
Flash is not installed on your pc!
</object>
</body>
</html>
答案 0 :(得分:3)
不,你不能。
HTML就是它所说的,它是一种标记语言。你需要使用js。
答案 1 :(得分:0)
最后,我根据@Manmeet Gill评论做了一个简单的代码:
function loadIframeModal() {
$(document).on('click', '.modal__button', function(e) {
var src = $(this).attr('data-src'),
width = $(this).attr('data-width'),
height = $(this).attr('data-height'),
allowfullscreen = $(this).attr('data-video-fullscreen');
$("#myModal iframe").attr({
'src' : src,
'height' : height,
'width' : width,
'allowfullscreen' : allowfullscreen
});
$('#myModal').on('hidden.bs.modal', function(){
$(this).find('iframe').html("");
$(this).find('iframe').attr("src", "");
});
});
}
&#13;
脚本标记应位于 div 标记之后,两者都应位于正文标记