テキストボックスを編集可能にする予定です...だから、無効なコードからIDを削除しました...フィドルでテストしても機能しません...以下にタラを提供します....コードの一部を提供していますフィドルでは、テキストボックスが表示されません...
<!DOCTYPE html>
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$("p").click(function(){
$(this).hide();
});
});
</script>
</head>
<body>
<p>If you click on me, I will disappear.</p>
<p>Click me away!</p>
<p>Click me too!</p>
</body>
</html>