我有这个javascript:
rdf:first
如何在取消选中时创建.slideUp?
这是aspx页面html,如果有帮助:
$("body").on('click', '#bhexperience', function () {
// alert('fsdf');
$(".hidePanel").slideDown('slow');
//$(".tooltip").hide();
//$(".block-conent").removeClass('block-conent');
//$(this).parent().parent().find('.tooltip').show();
//$(this).parent().parent().addClass('block-conent');
//$(this).addClass('newContent');
});
答案 0 :(得分:0)
查看jQuery中的blur
事件:
import React from "react";
var newForm = React.createClass({
handleSubmit: function (e, text) {
e.preventDefault();
console.log(text);
},
render: function () {
return (
<form onSubmit={this.handleSubmit("react!!!")}>
<input type="text"/>
</form>
);
}
)};
module.exports = newForm;
编辑:查看我更新的jsfiddle here。
$('#bhexperience').on('blur', function() {
$(".hidePanel").slideUp('slow');
});