Сообщение от imediasun1
|
на выводе все равно undefined
|
Бивас, тест! (с)
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<!--
<link rel="stylesheet" type="text/css" href="tmp.css" />
-->
<style type="text/css">
</style>
<script type="text/javascript">
$(function (){
$('li').click(function(){
var _this=$(this).attr('id');
if ( _this.p==undefined ){ //Unhandled Error: Cannot convert '_this' to object
_this.p=0;
alert(_this.p);
};
});
});
</script>
</head>
<body>
<ul>
<li>test</li>
</ul>
</body>
</html>
Встречный вопрос:
- Где тот вывод undefined?