我有以下html:
<div type="Text with spaces" eventid="57" class="movie">...</div>
如何type
使用 jQuery 读取属性?
我试过这个:
var type = $(".movie").attr("type");
但type
仅包含Text
.
更新:
这就是我使用这个变量的方式:
$("#publicationBlock").load("/Publication/EventSchedule?eventId=" + eventId + "&type=" + type
在行动中,我只得到Text
.