我在我的计算机上的主分支机构本地工作。我已经更新了一些HTML,我正在localhost中加载页面。但是,HTML没有更新,但我的CSS是,我该怎么办?我之前没有遇到过这个问题!
答案 0 :(得分:0)
尝试
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<table>
<tr><td>Account</td><td>Debet</td><td>Credit</td></tr>
<tr>
<td>
<select id="acc" name="acc" required="required">
<option value="">Select</option>
<option value="db">Cash-In</option>
<option value="cr">Cash-Out</option>
</select>
</td>
<td><input type="text" id="debit" name="debit" /></td>
<td><input type="text" id="credit" name="credit" /></td>
</tr>
</table>
终端上的。可能是缓存中提供的页面,这就是为什么不反映更改。
答案 1 :(得分:0)
尝试执行此命令以删除缓存:
php artisan clear-compiled
php artisan cache:clear
php artisan config:clear
php artisan route:clear
php artisan view:clear
composer dump-autoload
php artisan optimize