0
我有一個快速的問題 所以,我的代碼是一樣的東西:jQuery和引導3簡單的解決
<html>
<head>
</head>
<body>
<?php
//file that contains the modals
include ('modals.php');
<button class="openCompany">
OPEN
</button>
?>
//...
</body>
</html>
,並在最後,我有一個JS腳本來打開一個模式像:
<script type="text/javascript">
$('#companyModal').modal('show');
</script>
這完美的作品,但是當我做
$(".openCompany").click(function() {
$('#companyModal').modal('show');
});
它沒有了。
謝謝。