我試圖在我的代碼中實現這一點,但我不知道是怎麼回事。我搜索了很多,但我無法發現我的代碼中存在問題。先謝謝你。jquery水印插件有問題
<html>
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.0.min.js" />
<script type="text/javascript" src="jquery.watermark.js" />
</head>
<body>
<input type="text" width="300px" id="input">
<script type="text/javascript">
$("#input").watermark("Heee");
</script>
</body>
</html>
更新:
我已經編輯我的代碼,仍然可以得到這樣的結果:
我的編輯代碼:
<html>
<body>
<input type="text" width="300px" id="input">
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.0.min.js" />
<script type="text/javascript" src="jquery.watermark.js" />
<script type="text/javascript">
$("#input").watermark("Heee");
</script>
</body>
</html>
嘗試'$(函數(){$( 「#輸入」)水印( 「HEEE」);});' –
@RUJordan應該不需要。劇本在身體的盡頭。檢查控制檯是否有錯誤。 – War10ck
您的jquery.watermark.js文件位於何處?與您的html相同的文件夾?不同文件夾? – Charlie74