ไม่แน่ใจว่ามีความยืดหยุ่นหรือจำนวนกรณีที่คุณต้องการให้ครอบคลุม แต่สำหรับตัวอย่างของคุณหากข้อความมาก่อนแท็ก HTML แรก - ทำไมไม่แยก HTML ด้านในออกจากแท็กแรก
$('#listItem').html().split('<span')[0];
และถ้าคุณต้องการมันอาจจะกว้างขึ้น
$('#listItem').html().split('<')[0];
และถ้าคุณต้องการข้อความระหว่างสองเครื่องหมายเช่นหลังจากสิ่งหนึ่ง แต่ก่อนอื่นคุณสามารถทำสิ่งที่ต้องการ (ยังไม่ทดลอง) และใช้ถ้าคำสั่งเพื่อให้มีความยืดหยุ่นเพียงพอที่จะมีเครื่องหมายเริ่มต้นหรือจุดสิ้นสุดหรือทั้งสองอย่าง :
var startMarker = '';// put any starting marker here
var endMarker = '<';// put the end marker here
var myText = String( $('#listItem').html() );
// if the start marker is found, take the string after it
myText = myText.split(startMarker)[1];
// if the end marker is found, take the string before it
myText = myText.split(endMarker)[0];
console.log(myText); // output text between the first occurrence of the markers, assuming both markers exist. If they don't this will throw an error, so some if statements to check params is probably in order...
ฉันมักจะทำฟังก์ชั่นยูทิลิตี้สำหรับสิ่งที่มีประโยชน์เช่นนี้ทำให้ปราศจากข้อผิดพลาดจากนั้นพึ่งพาพวกเขาบ่อยครั้งหนึ่งที่เป็นของแข็งแทนที่จะเขียนใหม่ของการจัดการสตริงประเภทนี้และเสี่ยงต่อการอ้างอิงเป็นโมฆะเป็นต้นด้วยวิธีนี้ ในโครงการจำนวนมากและไม่ต้องเสียเวลาในการดีบักอีกครั้งเพราะเหตุใดการอ้างอิงสตริงจึงมีข้อผิดพลาดอ้างอิงที่ไม่ได้กำหนด อาจไม่ได้เป็นรหัส 1 บรรทัดที่สั้นที่สุด แต่หลังจากคุณมีฟังก์ชั่นยูทิลิตี้มันเป็นหนึ่งบรรทัดจากนั้น หมายเหตุรหัสส่วนใหญ่เป็นเพียงการจัดการพารามิเตอร์ที่อยู่ที่นั่นหรือไม่เพื่อหลีกเลี่ยงข้อผิดพลาด :)
ตัวอย่างเช่น:
/**
* Get the text between two string markers.
**/
function textBetween(__string,__startMark,__endMark){
var hasText = typeof __string !== 'undefined' && __string.length > 0;
if(!hasText) return __string;
var myText = String( __string );
var hasStartMarker = typeof __startMark !== 'undefined' && __startMark.length > 0 && __string.indexOf(__startMark)>=0;
var hasEndMarker = typeof __endMark !== 'undefined' && __endMark.length > 0 && __string.indexOf(__endMark) > 0;
if( hasStartMarker ) myText = myText.split(__startMark)[1];
if( hasEndMarker ) myText = myText.split(__endMark)[0];
return myText;
}
// now with 1 line from now on, and no jquery needed really, but to use your example:
var textWithNoHTML = textBetween( $('#listItem').html(), '', '<'); // should return text before first child HTML tag if the text is on page (use document ready etc)