display:none 이후에는 해당 값이 더 이상 존재하지 않을 것이라고 생각했습니다. display:none이 숨겨진 후에도 양식에 값이 있으면 해당 값은 여전히 존재합니다. (프로젝트에 문제가 있습니다!!)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"><title>Document</title><script src="jquery-1.7.1.min.js?1.1.11"></script></head><body><div style="display:none;"> <input type="text" value="11" name="ceshi" class="buytt" /></div><input type="button" value="提交" class="yang" /><script type="text/javascript">$(document).ready(function(){ $(".yang").click(function(){var data = $(".buytt").val(); alert(data); }); });</script></body></html>
2.
위 내용은 표시 후에도 값이 남아 있으면 어떻게 해야 합니까? 숨김이 없습니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!