我有一个书签,附加身体以显示一个小文件夹。在该litebox中有一个表单。当用户点击输入字段时,我希望当前值消失。这是我到目前为止所尝试过的,它无法正常工作。
function runthis() {
$('body').append("<p><input type='text' name='story_price' value='Price' onClick='this.value=''' /><p>");}
我也试过这个,它不允许我的书签出现:
function runthis() {
$('body').append("<p><input type='text' name='story_price' value='Price' onClick='this.value=""' /><p>");}
关于如何清除.append中的内容的任何想法
谢谢!
答案 0 :(得分:0)
逃避你的报价
(“在双人内部使用单引号是'好'')
('这不行') - 应该是('这不行')
function runthis() {
$("body").append('<p><input type="text" name="story_price" value="Price" onClick="this.value=\'\'" /><p>');}